Trait vecmath::traits::Max[][src]

pub trait Max {
    pub fn max(self, other: Self) -> Self;
}
[]

Maximum value.

Required methods

pub fn max(self, other: Self) -> Self[src][]

Returns the maximum value of self or other.

Implementations on Foreign Types

impl Max for f64[src][]

impl Max for f32[src][]

Implementors