Get returns a buffer with specified length from the pool.
(length int)
| 30 | type BufferPool interface { |
| 31 | // Get returns a buffer with specified length from the pool. |
| 32 | Get(length int) *[]byte |
| 33 | |
| 34 | // Put returns a buffer to the pool. |
| 35 | // |
no outgoing calls