appendInt appends an integer value to the buffer.
(data int64)
| 78 | |
| 79 | // appendInt appends an integer value to the buffer. |
| 80 | func (b *buffer) appendInt(data int64) { |
| 81 | *b = strconv.AppendInt(*b, data, 10) |
| 82 | } |
| 83 | |
| 84 | // appendUint appends an unsigned integer value to the buffer. |
| 85 | func (b *buffer) appendUint(data uint64) { |
no outgoing calls
no test coverage detected