expression >>>
expression
Each expression yields an integer
.
The >>>
operator shifts a given value a specified number of bits to the right, without sign extension if possible. Missing bits are filled with zero.
The expression x
is equivalent to >>>
y
when x and y are positive integers. floor
(x/2^y)
In OpenXION, since the integer
data type has arbitrary range, >>>
is a synonym of >>
.