Ror

Value = Ror ( Number , Bit )

Value = Number Ror Bit

Since 3.17

Returns Number with Bit bits right rotated.

The type of Number may be Byte, Short, Integer, or Long.

The valid range of Bit depends on the type of the Number argument.

Type of Number Range of Bit
Byte 0...7
Short 0...15
Integer 0...31
Long 0...63

The datatype of the return value is the datatype of Number.

Errors

Message Description
Type mismatch (6) The datatype of the Number argument is not valid.
Bad argument (20) The Bit argument is out of range.

Examples

PRINT Hex$(Rol(&H12345678, 4))
81234567

See also