status-go/vendor/github.com/RoaringBitmap/roaring/internal/pools.go

22 lines
305 B
Go
Raw Normal View History

2022-03-10 09:44:48 +00:00
package internal
import (
"sync"
)
var (
// ByteInputAdapterPool shared pool
ByteInputAdapterPool = sync.Pool{
New: func() interface{} {
return &ByteInputAdapter{}
},
}
// ByteBufferPool shared pool
ByteBufferPool = sync.Pool{
New: func() interface{} {
return &ByteBuffer{}
},
}
)