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

Function highbits

roaring64/util.go:5–7  ·  view source on GitHub ↗
(x uint64)

Source from the content-addressed store, hash-verified

3import "github.com/RoaringBitmap/roaring/v2"
4
5func highbits(x uint64) uint32 {
6 return uint32(x >> 32)
7}
8
9func lowbits(x uint64) uint32 {
10 return uint32(x & maxLowBit)

Callers 12

ContainsMethod · 0.70
AddMethod · 0.70
CheckedAddMethod · 0.70
RemoveMethod · 0.70
CheckedRemoveMethod · 0.70
RankMethod · 0.70
AddManyMethod · 0.70
FlipMethod · 0.70
AddRangeMethod · 0.70
RemoveRangeMethod · 0.70
FlipFunction · 0.70
TestCopiesFunction · 0.70

Calls

no outgoing calls

Tested by 1

TestCopiesFunction · 0.56

Used in the wild real call sites across dependent graphs

searching dependent graphs…