macro_rules! assert_gte {
($left:expr, $right:expr $(,)?) => { ... };
($left:expr, $right:expr, $($msg:tt)*) => { ... };
}
Expand description
Asserts that the left value is greater than or equal to the right value.
macro_rules! assert_gte {
($left:expr, $right:expr $(,)?) => { ... };
($left:expr, $right:expr, $($msg:tt)*) => { ... };
}
Asserts that the left value is greater than or equal to the right value.