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.
main (development) branch of crypto-glue.