operator + method

Integer operator +(
  1. Integer b
)

Implementation

Integer operator +(Integer b) => Integer(value + b.value);