macro_rules! debug_assert_gt {
($($arg:tt)*) => { ... };
}
Expand description
Asserts that the first expression is greater than the second in debug builds.
This macro behaves the same as assert_gt!
on debug builds. On release builds it is a no-op.