Trait NaNCountKernel

Source
pub trait NaNCountKernel: VTable {
    // Required method
    fn nan_count(&self, array: &Self::Array) -> VortexResult<usize>;
}
Expand description

Computes the min and max of an array, returning the (min, max) values

Required Methods§

Source

fn nan_count(&self, array: &Self::Array) -> VortexResult<usize>

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§