Trait IsLess
typenum::type_operators
pub trait IsLess<Rhs = Self> { type Output: Bit; fn is_less(self, rhs: Rhs) -> Self::Output; }
A type operator that returns True if Self < Rhs, otherwise returns False.
True
Self < Rhs
False
type Output: Bit
The type representing either True or False
fn is_less(self, rhs: Rhs) -> Self::Output
Method returning True or False.
impl<A, B> IsLess<B> for A where A: Cmp<B> + IsLessPrivate<B, Compare<A, B>>,
type Output = <A as IsLessPrivate<B, Compare<A, B>>>::Output
fn is_less(self, rhs: B) -> Self::Output