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

Function bitmapEquals

bitmapcontainer.go:313–323  ·  view source on GitHub ↗
(a, b []uint64)

Source from the content-addressed store, hash-verified

311}
312
313func bitmapEquals(a, b []uint64) bool {
314 if len(a) != len(b) {
315 return false
316 }
317 for i, v := range a {
318 if v != b[i] {
319 return false
320 }
321 }
322 return true
323}
324
325func (bc *bitmapContainer) fillLeastSignificant16bits(x []uint32, i int, mask uint32) int {
326 // TODO: should be written as optimized assembly

Callers 1

equalsMethod · 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…