()
| 703 | } |
| 704 | |
| 705 | func (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 |
no outgoing calls
no test coverage detected