operator >> abstract method

IntX operator >>(
  1. int shiftAmount
)

Right bit-shift operator.

Returns the result of shifting the bits of this integer by shiftAmount bits to the right. High-order bits are filled with zero in the case where this integer is positive, or one in the case where it is negative.

Implementation

IntX operator >>(int shiftAmount);