pop

Function pop 

Source
pub unsafe fn pop(stack: Stack) -> (Stack, 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).