operator >>> method

Uint32 operator >>>(
  1. int shiftAmount
)

Right-shift explicitly padding zeros unconditionally.

Implementation

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