operator + method

Integer operator +(
  1. Integer other
)

Arithmetic operators

Implementation

Integer operator +(Integer other) => Integer(_value + other._value);