operator * method

Uint64 operator *(
  1. Uint64 other
)

Multiplication mathematically clipped naturally to standard hardware constraints.

Implementation

Uint64 operator *(Uint64 other) => Uint64.from(value * other.value);