Macro mm0_util::unwrap_unchecked[][src]

macro_rules! unwrap_unchecked {
    ($e : expr) => { ... };
}
Expand description

Like unwrap, but invokes undefined behavior instead of panicking.

Safety

This function must not be called on a None value.