Macro more_asserts::debug_assert_gt [] [src]

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

Panics if the first expression is not strictly greater than the second. Requires that the types be comparable with >.

Prints the values out on panic.

This macro is disabled by default in optimized builds, unless -C debug-assertions is provided to the compiler.