appendBool appends a boolean value to the buffer.
(data bool)
| 93 | |
| 94 | // appendBool appends a boolean value to the buffer. |
| 95 | func (b *buffer) appendBool(data bool) { |
| 96 | *b = strconv.AppendBool(*b, data) |
| 97 | } |
| 98 | |
| 99 | // remove removes the last n bytes from the buffer. |
| 100 | func (b *buffer) remove(n int) { |
no outgoing calls
no test coverage detected