bitlshift
Left bit-shift.
Syntax
Section titled “Syntax”v = bitlshift(a, b)Description
Section titled “Description”Returns a shifted left by b bit positions. Equivalent to a * 2^b (with overflow truncation if applicable).
Example
Section titled “Example”bitlshift(1, 4) % 16