MCPcopy
hub / github.com/RoaringBitmap/roaring / newBitmapContainer

Function newBitmapContainer

bitmapcontainer.go:23–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

21}
22
23func newBitmapContainer() *bitmapContainer {
24 p := new(bitmapContainer)
25 size := (1 << 16) / 64
26 p.bitmap = make([]uint64, size, size)
27 return p
28}
29
30func newBitmapContainerwithRange(firstOfRun, lastOfRun int) *bitmapContainer {
31 bc := newBitmapContainer()

Callers 15

orBitmapMethod · 0.85
xorBitmapMethod · 0.85
andBitmapMethod · 0.85
andNotBitmapMethod · 0.85
addOffsetMethod · 0.85
TestBitmapCOWFunction · 0.85
TestRoaringArrayCOWFunction · 0.85
AndAnyMethod · 0.85
TestBitmapFunction · 0.85
TestRoaringArrayFunction · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…