static
| 469 | |
| 470 | // static |
| 471 | unique_ptr<CompressedBitVector> CompressedBitVector::Union(CompressedBitVector const & lhs, |
| 472 | CompressedBitVector const & rhs) |
| 473 | { |
| 474 | static UnionOp const op; |
| 475 | return Apply(op, lhs, rhs); |
| 476 | } |
| 477 | |
| 478 | // static |
| 479 | bool CompressedBitVector::IsEmpty(unique_ptr<CompressedBitVector> const & cbv) |