1package bufpool 2 3// Bytes returns the underlying byte slice that represents the current contents 4// of the buffer. Modifying the returned slice modifies the Buffer itself. 5func (buf *Buffer) Bytes() []byte { 6 return buf.buf 7}