Trait typenum::type_operators::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
.