Ror
Value = Ror ( Number , Bit )
Value = Number Ror Bit
Returns
Number with
Bit bits right rotated.
Ror
now can be used as an operator.
Since 3.17
The type of
Number may be
Byte,
Short,
Integer, or
Long.
The valid range of
Bit depends on the type of the
Number argument.
The datatype of the return value is the datatype of Number.
Errors
Examples
PRINT Hex$(Rol(&H12345678, 4))
See also