Create from a SequenceRead[Byte]

Property definitions

c $ CByteArray :: from
	# Create from a `SequenceRead[Byte]`
	new from(array: SequenceRead[Byte])
	do
		var carray = new CByteArray(array.length)
		for i in array.length.times do
			carray[i] = array[i]
		end
		return carray
	end
lib/c/c.nit:168,2--176,4