operator + method

Uint32 operator +(
  1. Uint32 other
)

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

Implementation

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