()
| 292 | } |
| 293 | |
| 294 | func (bc *bitmapContainer) getUnsetIterator() shortPeekable { |
| 295 | return newBitmapContainerUnsetIterator(bc) |
| 296 | } |
| 297 | |
| 298 | func (bc *bitmapContainer) getSizeInBytes() int { |
| 299 | return len(bc.bitmap) * 8 |
nothing calls this directly
no test coverage detected