macro_rules! otry { ($expression: expr) => { ... }; }
Macro for optional try - returns early if the expression evaluates to None. Similar to the ? operator but for use in instruction implementations.
?