RSHIFT

result = x RSHIFT n

Performs a bitwise operation that shifts all the bits of x to the right by an amount of n.

Example

n = 0b1100 rshift 2
print bin(n)            ' Output: 11

n = 0b1100 rshift 3
print bin(n)            ' Output: 1
Language
If there is insufficient information on this page and you wish learn more about RSHIFT, please send an email to smallbasic@gmail.com. You can help to improve information about RSHIFT by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.