static
| 453 | |
| 454 | // static |
| 455 | unique_ptr<CompressedBitVector> CompressedBitVector::Intersect(CompressedBitVector const & lhs, |
| 456 | CompressedBitVector const & rhs) |
| 457 | { |
| 458 | static IntersectOp const op; |
| 459 | return Apply(op, lhs, rhs); |
| 460 | } |
| 461 | |
| 462 | // static |
| 463 | unique_ptr<CompressedBitVector> CompressedBitVector::Subtract(CompressedBitVector const & lhs, |