operator >> method

Uint16 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

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