pub trait ArgminMinMax {
    fn min(x: &Self, y: &Self) -> Self;
    fn max(x: &Self, y: &Self) -> Self;
}
Expand description

Minimum and Maximum of type T

Required Methods

Select piecewise minimum

Select piecewise maximum

Implementations on Foreign Types

Implementors