(a *bitmapContainer)
| 156 | } |
| 157 | |
| 158 | func newBitmapContainerShortIterator(a *bitmapContainer) *bitmapContainerShortIterator { |
| 159 | return &bitmapContainerShortIterator{a, a.NextSetBit(0)} |
| 160 | } |
| 161 | |
| 162 | func (bc *bitmapContainer) getShortIterator() shortPeekable { |
| 163 | return newBitmapContainerShortIterator(bc) |
no test coverage detected
searching dependent graphs…