Macro claim::debug_assert_lt
source · [−]macro_rules! debug_assert_lt {
($($arg:tt)*) => { ... };
}
Expand description
Asserts that first expression is less than the second in runtime.
Like assert_lt!
, this macro also has a second version,
where a custom panic message can be provided.
Uses
See debug_assert!
documentation for possible use cases.
The same applies to this macro.