Append appends val.
(val []byte)
| 120 | |
| 121 | // Append appends val. |
| 122 | func (b *Builder) Append(val []byte) { |
| 123 | b.bytes = Append(b.bytes, val) |
| 124 | } |
| 125 | |
| 126 | // Bytes returns the constructed value. It panics if the receiver has an open |
| 127 | // container. |