pub unsafe fn pop(stack: *mut StackValue) -> (*mut StackValue, Value)Expand description
Pop a value from the stack
Returns (new_sp, value) where new_sp = sp - 1.
ยงSafety
Stack must not be at base (must have at least one value).
pub unsafe fn pop(stack: *mut StackValue) -> (*mut StackValue, Value)Pop a value from the stack
Returns (new_sp, value) where new_sp = sp - 1.
Stack must not be at base (must have at least one value).