Macro ensure_and_debug_assert

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

Returns early with an error if a condition is not satisfied. In non-optimized builds, panics instead if so.