Documentation

Added in v2.01

bitshift

Syntax: %bitshift(value,num)

shifts the value the num bits to the left. If num is negative, then the value is shifted to the right.

Example:

#SHOW %bitshift(2,1)
Displays 4
#SHOW %bitshift(2,-1)
Displays 1

Add comment

Login or register to post comments