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

Method hasRunCompression

roaringarray.go:705–713  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

703}
704
705func (ra *roaringArray) hasRunCompression() bool {
706 for _, c := range ra.containers {
707 switch c.(type) {
708 case *runContainer16:
709 return true
710 }
711 }
712 return false
713}
714
715/**
716 * Find the smallest integer index larger than pos such that array[index].key>=min. If none can

Callers 3

headerSizeMethod · 0.95
writeToMethod · 0.95
HasRunCompressionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected