rshift
The rshift is an operator used to shift bits to the right.
Syntax
Integer rshift Integer
Example Code
int32 i = 32 rshift 1;
Output
16
The rshift is an operator used to shift bits to the right.
Integer rshift Integer
int32 i = 32 rshift 1;
16