operator + method

Int8 operator +(
  1. Int8 other
)

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

Implementation

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