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

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

Required Associated Types§

Required Methods§

Implementors§