[][src]Trait typenum::type_operators::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

The type representing either True or False

Required Methods

Method returning True or False.

Implementors

impl<A, B> IsGreater<B> for A where
    A: Cmp<B> + IsGreaterPrivate<B, Compare<A, B>>, 
[src]