[][src]Macro k9::assert_greater_than_or_equal

macro_rules! assert_greater_than_or_equal {
    ($left:expr, $right:expr) => { ... };
    ($left:expr, $right:expr, $description:expr) => { ... };
}

Asserts if left greater than or equal to right. panics if they are not

use k9::assert_greater_than_or_equal;

assert_greater_than_or_equal!(2, 1);
assert_greater_than_or_equal!(1, 1);