AppendByte writes a single byte to the Buffer.
(v byte)
| 39 | |
| 40 | // AppendByte writes a single byte to the Buffer. |
| 41 | func (b *Buffer) AppendByte(v byte) { |
| 42 | b.bs = append(b.bs, v) |
| 43 | } |
| 44 | |
| 45 | // AppendBytes writes the given slice of bytes to the Buffer. |
| 46 | func (b *Buffer) AppendBytes(v []byte) { |
no outgoing calls