operator >> method

Uint32 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

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