(value2 *bitmapContainer)
| 605 | } |
| 606 | |
| 607 | func (bc *bitmapContainer) andBitmapCardinality(value2 *bitmapContainer) int { |
| 608 | return int(popcntAndSlice(bc.bitmap, value2.bitmap)) |
| 609 | } |
| 610 | |
| 611 | func (bc *bitmapContainer) computeCardinality() { |
| 612 | bc.cardinality = int(popcntSlice(bc.bitmap)) |
no test coverage detected