BufferWithCap is a Buffer pool that
| 55 | |
| 56 | // BufferWithCap is a Buffer pool that |
| 57 | type BufferWithCap struct { |
| 58 | bp *Buffer |
| 59 | max int |
| 60 | } |
| 61 | |
| 62 | func newBufferWithCap(max int) *BufferWithCap { |
| 63 | return &BufferWithCap{ |
nothing calls this directly
no outgoing calls
no test coverage detected