Template
1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo synced 2024-12-04 07:46:11 +01:00
forgejo/vendor/github.com/RoaringBitmap/roaring/internal/pools.go

22 lines
305 B
Go
Raw Normal View History

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{}
},
}
)