appendUint appends an unsigned integer value to the buffer.
(data uint64)
| 83 | |
| 84 | // appendUint appends an unsigned integer value to the buffer. |
| 85 | func (b *buffer) appendUint(data uint64) { |
| 86 | *b = strconv.AppendUint(*b, data, 10) |
| 87 | } |
| 88 | |
| 89 | // appendFloat appends a float value to the buffer. |
| 90 | func (b *buffer) appendFloat(data float64) { |
no outgoing calls
no test coverage detected