Adds a char c at the end of self

Property definitions

core $ Buffer :: add
	# Adds a char `c` at the end of self
	fun add(c: Char) is abstract
lib/core/text/abstract_text.nit:1562,2--1563,29

core $ FlatBuffer :: add
	redef fun add(c)
	do
		if written then reset
		var clen = c.u8char_len
		var bt = _byte_length
		enlarge(bt + clen)
		_items.set_char_at(bt, c)
		_byte_length += clen
		_length += 1
	end
lib/core/text/flat.nit:969,2--978,4