Copies the content of self in dest

Property definitions

core $ FlatBuffer :: copy
	# Copies the content of self in `dest`
	fun copy(start: Int, len: Int, dest: Buffer, new_start: Int)
	do
		var self_chars = self.chars
		var dest_chars = dest.chars
		for i in [0..len-1] do
			dest_chars[new_start+i] = self_chars[start+i]
		end
	end
lib/core/text/flat.nit:1080,2--1088,4