Trait Max
float
pub trait Max { fn max(self, other: Self) -> Self; }
Maximum value.
fn max(self, other: Self) -> Self
Returns the maximum value of self or other.
impl Max for f32
impl Max for f64