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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl<D1: DimName, D2: DimName> DimNameSub<D2> for D1 where
    D1::Value: Sub<D2::Value>,
    Diff<D1::Value, D2::Value>: NamedDim
[src]

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

Loading content...