operator + method

Int64 operator +(
  1. Int64 other
)

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

Implementation

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