shiftRightUnsigned abstract method

IntX shiftRightUnsigned(
  1. int shiftAmount
)

Unsigned right-shift operator.

Returns the result of shifting the bits of this integer by shiftAmount bits to the right. High-order bits are filled with zeros.

Implementation

IntX shiftRightUnsigned(int shiftAmount);