operator >>> method

Uint64 operator >>>(
  1. int shiftAmount
)

Right-shift explicitly padding zeros unconditionally.

Implementation

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