pub trait InvertKernel: Encoding {
// Required method
fn invert(&self, array: &Self::Array) -> VortexResult<ArrayRef>;
}
Required Methods§
Sourcefn invert(&self, array: &Self::Array) -> VortexResult<ArrayRef>
fn invert(&self, array: &Self::Array) -> VortexResult<ArrayRef>
Logically invert a boolean array. Converts true -> false, false -> true, null -> null.