fast_assert

Macro fast_assert 

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

A reimplementation of assert! that uses a closure to defer all panic-related work to the cold path.