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

pub trait DimNameMax<D: DimName>: DimName {
    type Output: DimName;
    fn max(self, other: D) -> Self::Output;
}

Associated Types

Loading content...

Required methods

fn max(self, other: D) -> Self::Output

Loading content...

Implementors

impl<D1: DimName, D2: DimName> DimNameMax<D2> for D1 where
    D1::Value: Max<D2::Value>,
    Maximum<D1::Value, D2::Value>: NamedDim
[src]

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

Loading content...