Appends self to b

Property definitions

core $ BytePattern :: append_to
	# Appends `self` to `b`
	fun append_to(b: Sequence[Int]) is abstract
lib/core/bytes.nit:42,2--43,44

core :: bytes $ Int :: append_to
	redef fun append_to(b) do b.push self
lib/core/bytes.nit:131,2--38

core $ Bytes :: append_to
	redef fun append_to(b) do b.append self
lib/core/bytes.nit:598,2--40