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

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

Associated Types

Loading content...

Required methods

pub fn div(self, other: D) -> Self::Output[src]

Loading content...

Implementors

impl<D1: DimName, D2: DimName> DimDiv<D2> for D1 where
    D1::Value: Div<D2::Value>,
    Quot<D1::Value, D2::Value>: NamedDim
[src]

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

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

type Output = Dynamic

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

type Output = Dynamic

Loading content...