macro_rules! unwrap {
($expr: expr) => { ... };
}Expand description
Unwraps a container, returns the content.
The input type must be one of
Option<T>, whereT: Copy.
The Copy bound may be relaxed in the future.
This macro is const-fn compatible.