operator * method

Uint64 operator *(
  1. Uint64 other
)

Implementation

Uint64 operator *(Uint64 other) {
  final (hi, lo) = widenMul(this, other);
  return lo;
}