Create an array with some objects.

Property definitions

core $ Array :: with_items
	# Create an array with some `objects`.
	init with_items(objects: E...)
	do
		_items = objects._items
		_capacity = objects._capacity
		_length = objects.length
	end
lib/core/collection/array.nit:425,2--431,4