GenericBufferPool abstracts buffer pool implementations.
| 4 | |
| 5 | // GenericBufferPool abstracts buffer pool implementations. |
| 6 | type GenericBufferPool interface { |
| 7 | Get() *bytes.Buffer |
| 8 | Put(b *bytes.Buffer) |
| 9 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…