(a *bitmapContainer)
| 183 | } |
| 184 | |
| 185 | func newReverseBitmapContainerShortIterator(a *bitmapContainer) *reverseBitmapContainerShortIterator { |
| 186 | if a.cardinality == 0 { |
| 187 | return &reverseBitmapContainerShortIterator{a, -1} |
| 188 | } |
| 189 | return &reverseBitmapContainerShortIterator{a, int(a.maximum())} |
| 190 | } |
| 191 | |
| 192 | func (bc *bitmapContainer) getReverseIterator() shortIterable { |
| 193 | return newReverseBitmapContainerShortIterator(bc) |
no test coverage detected
searching dependent graphs…