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

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

Associated Types

type Output: Dim

Loading content...

Required methods

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

Loading content...

Implementors

impl<D1: DimName, D2: DimName> DimMax<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

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

type Output = Dynamic

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

type Output = Dynamic

Loading content...