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

Function resetBitmapRangeAndCardinalityChange

util.go:186–191  ·  view source on GitHub ↗
(bitmap []uint64, start int, end int)

Source from the content-addressed store, hash-verified

184}
185
186func resetBitmapRangeAndCardinalityChange(bitmap []uint64, start int, end int) int {
187 before := wordCardinalityForBitmapRange(bitmap, start, end)
188 resetBitmapRange(bitmap, start, end)
189 after := wordCardinalityForBitmapRange(bitmap, start, end)
190 return int(after - before)
191}
192
193func setBitmapRangeAndCardinalityChange(bitmap []uint64, start int, end int) int {
194 before := wordCardinalityForBitmapRange(bitmap, start, end)

Callers 1

iremoveRangeMethod · 0.85

Calls 2

resetBitmapRangeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…