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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl<D1: DimName, D2: DimName> DimNameMul<D2> for D1 where
    D1::Value: Mul<D2::Value>,
    Prod<D1::Value, D2::Value>: NamedDim
[src]

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

Loading content...