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

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

Associated Types

type Output: Dim

Loading content...

Required methods

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

Loading content...

Implementors

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

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

type Output = Dynamic

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

type Output = Dynamic

Loading content...