Create a new empty string with a given capacity.

Property definitions

core $ FlatBuffer :: with_capacity
	# Create a new empty string with a given capacity.
	init with_capacity(cap: Int)
	do
		assert cap >= 0
		_items = new CString(cap)
		capacity = cap
		_byte_length = 0
	end
lib/core/text/flat.nit:1055,2--1062,4