pub trait ArrayInstanceMinMax<T>: ArrayInstance where
    T: HasAfEnum
{ fn max(&self) -> T; fn min(&self) -> T; }
Expand description

Defines common reduction operations min and max.

Required Methods

Find the maximum element.

Find the minimum element.

Implementors