Read the content of an array of len items

Property definitions

msgpack :: read $ Reader :: read_msgpack_array_data
	# Read the content of an array of `len` items
	private fun read_msgpack_array_data(len: Int): Array[nullable Serializable]
	do
		return [for i in [0..len[ do read_msgpack]
	end
lib/msgpack/read.nit:165,2--169,4