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