pub trait DimAdd<D: Dim>: Dim {
    type Output: Dim;

    fn add(self, other: D) -> Self::Output;
}

Required Associated Types§

Required Methods§

Implementors§