macro_rules! assert_ge {
    ($left:expr, $right:expr $(,)?) => { ... };
    ($left:expr, $right:expr, $($arg:tt)+) => { ... };
}
Expand description

Asserts that the left hand side expression is greater than or equal to the right hand side expression

Examples

let a = 200; let b = 100;
#[cfg(should_panic)]
assert_ge!(a, b);