Trait nalgebra::base::dimension::DimMin[][src]

pub trait DimMin<D: Dim>: Dim {
    type Output: Dim;
    fn min(self, other: D) -> Self::Output;
}

Associated Types

Loading content...

Required methods

fn min(self, other: D) -> Self::Output[src]

Loading content...

Implementors

impl<D1: DimName, D2: DimName> DimMin<D2> for D1 where
    D1::Value: Min<D2::Value>,
    Minimum<D1::Value, D2::Value>: NamedDim
[src]

type Output = <Minimum<D1::Value, D2::Value> as NamedDim>::Name

impl<D: Dim> DimMin<D> for Dynamic[src]

type Output = Dynamic

impl<D: DimName> DimMin<Dynamic> for D[src]

type Output = Dynamic

Loading content...