pub trait DimMax<D: Dim>: Dim {
    type Output: Dim;

    // Required method
    fn max(self, other: D) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

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

Implementors§

source§

impl<D1: DimName, D2: DimName> DimMax<D2> for D1where D1::Value: Max<D2::Value>, Maximum<D1::Value, D2::Value>: NamedDim,

§

type Output = <<<D1 as DimName>::Value as Max<<D2 as DimName>::Value>>::Output as NamedDim>::Name

source§

impl<D: Dim> DimMax<D> for Dynamic

source§

impl<D: DimName> DimMax<Dynamic> for D