bitrshift
Right bit-shift.
Syntax
Section titled “Syntax”v = bitrshift(a, b)Description
Section titled “Description”Returns a shifted right by b bit positions. Equivalent to floor(a / 2^b) for non-negative a.
Example
Section titled “Example”bitrshift(16, 2) % 4