operator + method

Int32 operator +(
  1. Int32 other
)

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

Implementation

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