Create an array from a collection.

Property definitions

core $ Array :: from
	# Create an array from a collection.
	init from(items: Collection[E]) do
		with_capacity(items.length)
		self.add_all(items)
	end
lib/core/collection/array.nit:419,2--423,4