Trait MinMaxKernel

Source
pub trait MinMaxKernel: VTable {
    // Required method
    fn min_max(&self, array: &Self::Array) -> VortexResult<Option<MinMaxResult>>;
}
Expand description

The minimum and maximum non-null values of an array, or None if there are no non-null values.

Required Methods§

Source

fn min_max(&self, array: &Self::Array) -> VortexResult<Option<MinMaxResult>>

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§