Skip to content

shift_left

Performs a bit-wise left shift.

shift_left(lhs:number, rhs:number) -> number

The shift_left function performs a bit-wise left shift of lhs by rhs bit positions. Each left shift multiplies the number by 2.

The number to be shifted.

The number of bit positions to shift to the left.

from {x: shift_left(5, 2)}
{x: 20}

shift_right, bit_and, bit_or, bit_xor, bit_not