operator >>> method

Uint16 operator >>>(
  1. int shiftAmount
)

Right-shift explicitly padding zeros unconditionally.

Implementation

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