bpool.go 236 B

123456
  1. /*
  2. Package bpool implements leaky pools of byte arrays and Buffers as bounded
  3. channels. It is based on the leaky buffer example from the Effective Go
  4. documentation: http://golang.org/doc/effective_go.html#leaky_buffer
  5. */
  6. package bpool