()
| 410 | } |
| 411 | |
| 412 | func (bc *bitmapContainer) isEmpty() bool { |
| 413 | return bc.cardinality == 0 |
| 414 | } |
| 415 | |
| 416 | func (bc *bitmapContainer) clone() container { |
| 417 | ptr := bitmapContainer{bc.cardinality, make([]uint64, len(bc.bitmap))} |
no outgoing calls
no test coverage detected