op_lshift

Function op_lshift 

Source
pub fn op_lshift(stack: &mut Stack) -> bool
Expand description

OP_LSHIFT: Computes the left shift of the second-to-top number by the number on top of the stack

Example: OP_LSHIFT([n1, n2]) -> [n1<<n2]

ยงArguments

  • stack - mutable reference to the stack