/// **Note:** Use the alias `ucsi::macros::unwrap::unwrap_option_const`.
////// This will be removed once `Option::unwrap` is const-able.
#[macro_export]macro_rules!__impl_unwrap_option_const{($op:expr)=>{match$op{::core::option::Option::Some(t)=> t,::core::option::Option::None =>panic!("called `Option::unwrap()` on a `None` value")}};}