pub fn op_lshift(stack: &mut Stack) -> boolExpand 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