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

    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

The type representing either True or False

Required Methods

Method returning True or False.

Implementors