LSHIFT int amount
int
amount
Outputs int shifted logically to the left by amount bits. If amount is negative, the shift is to the right with zero fill. The inputs must be integers.
SHOW LSHIFT 5 2 20 SHOW LSHIFT 20 -1 10 SHOW LSHIFT -20 -1 2147183638
SHOW LSHIFT 5 2
SHOW LSHIFT 20 -1
SHOW LSHIFT -20 -1