claims

Macro debug_assert_ge

Source
macro_rules! debug_assert_ge {
    ($($arg:tt)*) => { ... };
}
Expand description

Asserts that the first expression is greater than or equal to the second on debug builds.

This macro behaves the same as assert_ge! on debug builds. On release builds it is a no-op.