operator + method

Uint64 operator +(
  1. Uint64 other
)

Standard addition. Natively handles and wraps exact numerical overflows gracefully.

Implementation

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