Trait simd_iter::SimdOrdIterExt
source · 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§
sourcefn scalar_min(self) -> Option<Self::Scalar>
fn scalar_min(self) -> Option<Self::Scalar>
Returns the min of all the scalars in the iterator.
sourcefn scalar_max(self) -> Option<Self::Scalar>
fn scalar_max(self) -> Option<Self::Scalar>
Returns the max of all the scalars in the iterator.