lshift
The lshift is an operator used to shift bits to the left.
Syntax
Integer lshift Integer
Example Code
int32 i = 32 lshift 1;
Output
64
The lshift is an operator used to shift bits to the left.
Integer lshift Integer
int32 i = 32 lshift 1;
64