Create a array filled with a given native array.

Property definitions

core $ Array :: with_native
	# Create a array filled with a given native array.
	init with_native(nat: NativeArray[E], size: Int)
	do
		assert positive: size >= 0
		_items = nat
		_capacity = size
		_length = size
	end
lib/core/collection/array.nit:456,2--463,4