Trait diffgeom::typenum::IsGreater
[−]
pub trait IsGreater<Rhs = Self> {
type Output: Bit;
fn is_greater(self, rhs: Rhs) -> Self::Output;
}A type operator that returns True if Self > Rhs, otherwise returns False.
Associated Types
Required Methods
fn is_greater(self, rhs: Rhs) -> Self::Output
Method returning True or False.