typenum::type_operators

Trait IsLess

Source
pub trait IsLess<Rhs = Self> {
    type Output: Bit;

    // Required method
    fn is_less(self, rhs: Rhs) -> Self::Output;
}
Expand description

A type operator that returns True if Self < Rhs, otherwise returns False.

Required Associated Types§

Source

type Output: Bit

The type representing either True or False

Required Methods§

Source

fn is_less(self, rhs: Rhs) -> Self::Output

Method returning True or False.

Implementors§

Source§

impl<A, B> IsLess<B> for A
where A: Cmp<B> + IsLessPrivate<B, Compare<A, B>>,

Source§

type Output = <A as IsLessPrivate<B, <A as Cmp<B>>::Output>>::Output