| 98 | } |
| 99 | |
| 100 | Status InvertOpExec(KernelContext* ctx, const ExecSpan& batch, ExecResult* out) { |
| 101 | ArraySpan* out_span = out->array_span_mutable(); |
| 102 | GetBitmap(*out_span, 1).CopyFromInverted(GetBitmap(batch[0].array, 1)); |
| 103 | return Status::OK(); |
| 104 | } |
| 105 | |
| 106 | template <typename Op> |
| 107 | struct Commutative { |
nothing calls this directly
no test coverage detected