zeroFillRightShift method

int zeroFillRightShift(
  1. int amount
)

Implementation

int zeroFillRightShift(int amount) {
  return (this & 0xffffffff) >> amount;
}