ref: 9e44418ce9d88f4159067b1ce2c808cb93e29c38
dir: /internal/bufpool/bytes.go/
package bufpool
// Bytes returns the underlying byte slice that represents the current contents
// of the buffer. Modifying the returned slice modifies the Buffer itself.
func (buf *Buffer) Bytes() []byte {
return buf.buf
}