Trait InvertKernel

Source
pub trait InvertKernel: VTable {
    // Required method
    fn invert(&self, array: &Self::Array) -> VortexResult<ArrayRef>;
}

Required Methods§

Source

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.

Implementors§