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.
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.