operator >> method

Uint64 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

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