Trait argmin::core::ArgminMinMax[][src]

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

Minimum and Maximum of type T

Required methods

fn min(x: &Self, y: &Self) -> Self[src]

Select piecewise minimum

fn max(x: &Self, y: &Self) -> Self[src]

Select piecewise maximum

Loading content...

Implementations on Foreign Types

impl<T> ArgminMinMax for Vec<T> where
    T: PartialOrd + Clone
[src]

Loading content...

Implementors

Loading content...