Returns a copy of self

Property definitions

core $ Bytes :: clone
	# Returns a copy of `self`
	fun clone: Bytes do
		var b = new Bytes.with_capacity(length)
		b.append(self)
		return b
	end
lib/core/bytes.nit:282,2--287,4