Set val at index.

Property definitions

c $ CArray :: []=
	# Set `val` at `index`.
	fun []=(index: Int, val: E)
	do
		assert not destroyed
		assert index >= 0 and index < length
		native_array[index] = val
	end
lib/c/c.nit:42,2--48,4