| 458 | }; |
| 459 | |
| 460 | Result<std::shared_ptr<Buffer>> BitmapAndNot(MemoryPool* pool, const uint8_t* left, |
| 461 | int64_t left_offset, const uint8_t* right, |
| 462 | int64_t right_offset, int64_t length, |
| 463 | int64_t out_offset) { |
| 464 | return BitmapOp<AndNotOp>(pool, left, left_offset, right, right_offset, length, |
| 465 | out_offset); |
| 466 | } |
| 467 | |
| 468 | void BitmapAndNot(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 469 | int64_t right_offset, int64_t length, int64_t out_offset, |