Trait nalgebra::core::dimension::DimMax
[−]
[src]
pub trait DimMax<D: Dim>: Dim {
type Output: Dim;
fn max(self, other: D) -> Self::Output;
}
Associated Types
Required Methods
Implementors
impl<D1: DimName, D2: DimName> DimMax<D2> for D1 where
D1::Value: Max<D2::Value>,
Maximum<D1::Value, D2::Value>: NamedDim, type Output = <Maximum<D1::Value, D2::Value> as NamedDim>::Name;impl<D: Dim> DimMax<D> for Dynamic type Output = Dynamic;impl<D: DimName> DimMax<Dynamic> for D type Output = Dynamic;