operator + method

Int16 operator +(
  1. Int16 other
)

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

Implementation

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