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