Copies the content of src to self

NOTE: self must be large enough to contain self.byte_length bytes

Property definitions

core :: abstract_text $ CString :: fill_from
	# Copies the content of `src` to `self`
	#
	# NOTE: `self` must be large enough to contain `self.byte_length` bytes
	fun fill_from(src: Text) do src.copy_to_native(self, src.byte_length, 0, 0)
lib/core/text/abstract_text.nit:2556,2--2559,76