Trait collision::MinMax [] [src]

pub trait MinMax {
    fn min(a: Self, b: Self) -> Self;
fn max(a: Self, b: Self) -> Self; }

Compute the minimum/maximum of the given values

Required Methods

Compute the minimum

Compute the maximum

Implementations on Foreign Types

impl<S: PartialOrd> MinMax for Point2<S> where
    S: BaseNum
[src]

[src]

[src]

impl<S: PartialOrd> MinMax for Point3<S> where
    S: BaseNum
[src]

[src]

[src]

Implementors