append_int

func append_int(mut buf: [Byte], value: Int) -> Void

Appends the decimal spelling of value to a dump buffer.

View Source
pub func append_int(mut buf: [Byte], value: Int) -> Void {
	append(buf: buf, text: value.show())
}