macro_rules! cmp_op {
( $vm:ident, $frame:ident, $span:ident, $op:tt ) => { ... };
(@order < $ordering:expr) => { ... };
(@order > $ordering:expr) => { ... };
(@order <= $ordering:expr) => { ... };
(@order >= $ordering:expr) => { ... };
}
Expand description
This macro simplifies the implementation of comparison operations.