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