Macro ore::soft_assert[][src]

macro_rules! soft_assert {
    ($cond : expr $(, $($arg : tt) +) ?) => { ... };
}
Expand description

Asserts that a condition is true if soft assertions are enabled.

Soft assertions have a small runtime cost even when disabled. See ore::assert for details.