Macro debug_assert_exists

Source
macro_rules! debug_assert_exists {
    ($xs:expr, $pred:expr) => { ... };
}
Expand description

Debug-only version of assert_exists!. Panics if no element satisfies the predicate, but only in debug builds.