MCPcopy Create free account
hub / github.com/RoaringBitmap/roaring / next

Method next

bitmapcontainer.go:270–274  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

268}
269
270func (bcui *bitmapContainerUnsetIterator) next() uint16 {
271 j := bcui.i
272 bcui.i = bcui.ptr.NextUnsetBit(uint(bcui.i) + 1)
273 return uint16(j)
274}
275
276func (bcui *bitmapContainerUnsetIterator) hasNext() bool {
277 return bcui.i >= 0 && bcui.i < 65536

Callers

nothing calls this directly

Calls 1

NextUnsetBitMethod · 0.80

Tested by

no test coverage detected