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

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

Associated Types

type Output: Dim

Loading content...

Required methods

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

Loading content...

Implementors

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

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

type Output = Dynamic

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

type Output = Dynamic

Loading content...