Skip to main content

UNWRAP_OR

Constant UNWRAP_OR 

Source
pub const UNWRAP_OR: u8 = 0x7C;
Expand description

Inline Option.withDefault: pop default, pop option → push inner or default. Stack: [option, default] → [result] If option is Some → push unwrapped inner value. If option is None → push default.