pub trait InvertKernel: VTable {
// 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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.