Operators

>>>

Supported By

Syntax

expression >>> expression

Each expression yields an integer.

Description

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.

Notes

The expression x >>> y is equivalent to floor(x/2^y) when x and y are positive integers.

In OpenXION, since the integer data type has arbitrary range, >>> is a synonym of >>.

See Also

<<, >>