String returns the contents of the buffer as a string.
()
| 70 | |
| 71 | // String returns the contents of the buffer as a string. |
| 72 | func (b *buffer) String() string { |
| 73 | return string(*b) |
| 74 | } |
| 75 | |
| 76 | // Len returns the number of bytes written to the buffer. |
| 77 | func (b *buffer) Len() int { |
nothing calls this directly
no outgoing calls
no test coverage detected