Get returns a buffer with specified length from the pool.
(length int)
| 39 | type bufferPool interface { |
| 40 | // Get returns a buffer with specified length from the pool. |
| 41 | Get(length int) *[]byte |
| 42 | |
| 43 | // Put returns a buffer to the pool. |
| 44 | // |
no outgoing calls