Max

Trait Max 

Source
pub trait Max<T: PartialOrd> {
    // Required method
    fn max(&self) -> Result<&T>;
}

Required Methods§

Source

fn max(&self) -> Result<&T>

Implementations on Foreign Types§

Source§

impl<D, S> Max<<D as RawData>::Elem> for InterpND<D, S>
where D: Data + RawDataClone + Clone, D::Elem: PartialOrd + Debug, S: StrategyND<D> + Clone,

Source§

fn max(&self) -> Result<&D::Elem>

Source§

impl<D, S> Max<<D as RawData>::Elem> for Interp1D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: PartialOrd + Debug, S: Strategy1D<D> + Clone,

Source§

fn max(&self) -> Result<&D::Elem>

Source§

impl<D, S> Max<<D as RawData>::Elem> for Interp3D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: PartialOrd + Debug, S: Strategy3D<D> + Clone,

Source§

fn max(&self) -> Result<&D::Elem>

Source§

impl<D, S> Max<<D as RawData>::Elem> for Interp2D<D, S>
where D: Data + RawDataClone + Clone, D::Elem: PartialOrd + Debug, S: Strategy2D<D> + Clone,

Source§

fn max(&self) -> Result<&D::Elem>

Source§

impl<S> Max<<S as RawData>::Elem> for InterpolatorEnum<S>
where S: Data + RawDataClone + Clone, S::Elem: Num + PartialOrd + Copy + Debug,

Source§

fn max(&self) -> Result<&S::Elem>

Source§

impl<S, D> Max<<S as RawData>::Elem> for ArrayBase<S, D>
where S: Data, S::Elem: PartialOrd, D: Dimension,

Source§

fn max(&self) -> Result<&S::Elem>

Source§

impl<T> Max<T> for Interp0D<T>
where T: PartialOrd,

Source§

fn max(&self) -> Result<&T>

Source§

impl<T: PartialOrd> Max<T> for [T]

Source§

fn max(&self) -> Result<&T>

Source§

impl<T: PartialOrd> Max<T> for Vec<T>

Source§

fn max(&self) -> Result<&T>

Implementors§