operator >> method

Int32 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

Int32 operator >>(int shiftAmount) => Int32.from(value >> shiftAmount);