func append_int(mut buf: [Byte], value: Int) -> VoidAppends the decimal spelling of value to a dump buffer.View Sourcepub func append_int(mut buf: [Byte], value: Int) -> Void { append(buf: buf, text: value.show()) }