bit.blogic rshift
From ComputerCraft Wiki
{{Function |name=bit.blogic_rshift |args=int n, int bits |api=bit |returns=int the value of n shifted right by bits bits, with the shifted-in bits all being zero, which is equivalent to ⌊n÷2bits⌋ for nonnegative numbers |addon=ComputerCraft |desc=Shifts a number right logically by a specified number of bits |examples=
Example | |
Shift the number 73 (1001001) right by 2 bits, yielding 18 (10010) | |
Code |
print(bit.blogic_rshift(73, 2)) |
Output | 18 |