Bytes returns a mutable reference to the underlying byte slice.
()
| 91 | |
| 92 | // Bytes returns a mutable reference to the underlying byte slice. |
| 93 | func (b *Buffer) Bytes() []byte { |
| 94 | return b.bs |
| 95 | } |
| 96 | |
| 97 | // String returns a string copy of the underlying byte slice. |
| 98 | func (b *Buffer) String() string { |
no outgoing calls