pop_two

Function pop_two 

Source
pub unsafe fn pop_two(stack: Stack, _op_name: &str) -> (Stack, Value, Value)
Expand description

Pop two values from the stack (for binary operations)

Returns (new_sp, a, b) where a was below b on stack. Stack effect: ( a b – ) returns (a, b)

§Safety

Stack must have at least two values.