operator >> method

Uint8 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

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