rightLogShift
x >>> y
rightLogShift(x, y)
Bitwise right logical shift of a value x by y number of bits.
Try it yourself:
$1 | 8 >>> 1
| |
$2 | 4 << 1
| |
$3 | -12 >>> 2
|
Bitwise right logical shift of a value x by y number of bits.
Try it yourself:
$1 | 8 >>> 1
| |
$2 | 4 << 1
| |
$3 | -12 >>> 2
|