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.
macro_rules! fast_assert {
($cond:expr $(,)?) => { ... };
($cond:expr, $($arg:tt)+) => { ... };
}A reimplementation of assert! that uses a closure to defer all panic-related work to the cold path.