append appends data to the buffer.
(data ...byte)
| 52 | |
| 53 | // append appends data to the buffer. |
| 54 | func (b *buffer) append(data ...byte) { |
| 55 | *b = append(*b, data...) |
| 56 | } |
| 57 | |
| 58 | // appendString appends a string value to the buffer. |
| 59 | // If the string does not require escaping, it is appended directly. |
no outgoing calls
no test coverage detected