| 1054 | |
| 1055 | struct BitmapAndNotOp : public BitmapOperation { |
| 1056 | Result<std::shared_ptr<Buffer>> Call(MemoryPool* pool, const uint8_t* left, |
| 1057 | int64_t left_offset, const uint8_t* right, |
| 1058 | int64_t right_offset, int64_t length, |
| 1059 | int64_t out_offset) const override { |
| 1060 | return BitmapAndNot(pool, left, left_offset, right, right_offset, length, out_offset); |
| 1061 | } |
| 1062 | |
| 1063 | Status Call(const uint8_t* left, int64_t left_offset, const uint8_t* right, |
| 1064 | int64_t right_offset, int64_t length, int64_t out_offset, |
nothing calls this directly
no test coverage detected