static
| 461 | |
| 462 | // static |
| 463 | unique_ptr<CompressedBitVector> CompressedBitVector::Subtract(CompressedBitVector const & lhs, |
| 464 | CompressedBitVector const & rhs) |
| 465 | { |
| 466 | static SubtractOp const op; |
| 467 | return Apply(op, lhs, rhs); |
| 468 | } |
| 469 | |
| 470 | // static |
| 471 | unique_ptr<CompressedBitVector> CompressedBitVector::Union(CompressedBitVector const & lhs, |