macro_rules! bitlt {
($x:expr, $y:expr, $bits:expr) => { ... };
}Expand description
Bitwise less-than: returns 1 if x < y, and otherwise returns 0.
See “Hacker’s Delight” 2nd edition, section 2-12 (Comparison predicates)
macro_rules! bitlt {
($x:expr, $y:expr, $bits:expr) => { ... };
}Bitwise less-than: returns 1 if x < y, and otherwise returns 0.
See “Hacker’s Delight” 2nd edition, section 2-12 (Comparison predicates)