otry

Macro otry 

Source
macro_rules! otry {
    ($expression: expr) => { ... };
}
👎Deprecated since 29.0.0: Prefer let Some(x) = expr else { return; }; for early return in instruction functions
Expand description

Macro for optional try - returns early if the expression evaluates to None. Similar to the ? operator but for use in instruction implementations.