MinMaxKernel

Trait MinMaxKernel 

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

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

Required Methods§

Source

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

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§