claims

Macro debug_assert_le

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

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

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