Macro otry

Source
macro_rules! otry {
    ($expression: expr) => { ... };
}
Expand description

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