| 488 | }; |
| 489 | |
| 490 | Result<std::shared_ptr<Buffer>> BitmapAndNot(MemoryPool* pool, const uint8_t* left, |
| 491 | int64_t left_offset, const uint8_t* right, |
| 492 | int64_t right_offset, int64_t length, |
| 493 | int64_t out_offset) { |
| 494 | return BitmapOp<AndNotOp>(pool, left, left_offset, right, right_offset, length, |
| 495 | out_offset); |
| 496 | } |
| 497 | |
| 498 | void BitmapAndNot(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 499 | int64_t right_offset, int64_t length, int64_t out_offset, |