pub trait SimdOrdIterExt {
    type Scalar;

    fn scalar_min(self) -> Option<Self::Scalar>;
    fn scalar_max(self) -> Option<Self::Scalar>;
}
Expand description

An extension trait for Iterators over SimdOrdOrFloats.

Required Associated Types§

Required Methods§

Returns the min of all the scalars in the iterator.

Returns the max of all the scalars in the iterator.

Implementors§