operator >>> method Null safety

int operator >>>(
  1. int shiftAmount
)

Bitwise unsigned right shift by shiftAmount bits.

The least significant shiftAmount bits are dropped, the remaining bits (if any) are shifted down, and zero-bits are shifted in as the new most significant bits.

The shiftAmount must be non-negative.

Implementation

int operator >>>(int shiftAmount);