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

Function have4Overlap16

runcontainer.go:1382–1387  ·  view source on GitHub ↗
(astart, alast, bstart, blast int)

Source from the content-addressed store, hash-verified

1380}
1381
1382func have4Overlap16(astart, alast, bstart, blast int) bool {
1383 if alast+1 <= bstart {
1384 return false
1385 }
1386 return blast+1 > astart
1387}
1388
1389func intersectWithLeftover16(astart, alast, bstart, blast int) (isOverlap, isLeftoverA, isLeftoverB bool, leftoverstart int, intersection interval16) {
1390 if !have4Overlap16(astart, alast, bstart, blast) {

Callers 1

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