mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
Unexport roaring.BitmapInfo
This commit is contained in:
parent
fb7de28557
commit
c73fc795da
1 changed files with 4 additions and 4 deletions
|
|
@ -725,8 +725,8 @@ func (b *Bitmap) Iterator() *Iterator {
|
|||
}
|
||||
|
||||
// Info returns stats for the bitmap.
|
||||
func (b *Bitmap) Info() BitmapInfo {
|
||||
info := BitmapInfo{
|
||||
func (b *Bitmap) Info() bitmapInfo {
|
||||
info := bitmapInfo{
|
||||
OpN: b.opN,
|
||||
Containers: make([]ContainerInfo, 0, b.Containers.Size()),
|
||||
}
|
||||
|
|
@ -788,8 +788,8 @@ func (b *Bitmap) Flip(start, end uint64) *Bitmap {
|
|||
return result
|
||||
}
|
||||
|
||||
// BitmapInfo represents a point-in-time snapshot of bitmap stats.
|
||||
type BitmapInfo struct {
|
||||
// bitmapInfo represents a point-in-time snapshot of bitmap stats.
|
||||
type bitmapInfo struct {
|
||||
OpN int
|
||||
Containers []ContainerInfo
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue