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

Function ClearBits

roaring64/bsi64.go:1014–1016  ·  view source on GitHub ↗

ClearBits cleared the bits that exist in the target if they are also in the found set.

(foundSet, target *Bitmap)

Source from the content-addressed store, hash-verified

1012
1013// ClearBits cleared the bits that exist in the target if they are also in the found set.
1014func ClearBits(foundSet, target *Bitmap) {
1015 target.AndNot(foundSet)
1016}
1017
1018// ClearValues removes from the BSI all values whose column IDs are in
1019// foundSet, modifying the BSI in place.

Callers

nothing calls this directly

Calls 1

AndNotMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…