Macro unwrap

Source
macro_rules! unwrap {
    ($expr: expr) => { ... };
}
Expand description

Unwraps a container, returns the content.

The input type must be one of

The Copy bound may be relaxed in the future.

This macro is const-fn compatible.