macro_rules! otry {
($expression: expr) => { ... };
}👎Deprecated since 29.0.0: Prefer
let Some(x) = expr else { return; }; for early return in instruction functionsExpand description
Macro for optional try - returns early if the expression evaluates to None.
Similar to the ? operator but for use in instruction implementations.