macro_rules! const_try_opt {
($e:expr) => { ... };
}
Expand description
Try to unwrap an expression, returning if not possible.
This is similar to the ?
operator, but is usable in const
contexts.
macro_rules! const_try_opt {
($e:expr) => { ... };
}
Try to unwrap an expression, returning if not possible.
This is similar to the ?
operator, but is usable in const
contexts.