pool.go 145 B

123456789
  1. package pool
  2. func Get(size int) []byte {
  3. return defaultAllocator.Get(size)
  4. }
  5. func Put(buf []byte) error {
  6. return defaultAllocator.Put(buf)
  7. }