MCPcopy Index your code
hub / github.com/RoaringBitmap/roaring / newArrayContainerUnsetIterator

Function newArrayContainerUnsetIterator

shortiterator.go:95–102  ·  view source on GitHub ↗
(content []uint16)

Source from the content-addressed store, hash-verified

93}
94
95func newArrayContainerUnsetIterator(content []uint16) *arrayContainerUnsetIterator {
96 acui := &arrayContainerUnsetIterator{content: content, pos: 0, nextVal: 0}
97 for acui.pos < len(acui.content) && uint16(acui.nextVal) >= acui.content[acui.pos] {
98 acui.nextVal++
99 acui.pos++
100 }
101 return acui
102}

Callers 2

initMethod · 0.85
getUnsetIteratorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…