operator + method

Complex operator +(
  1. Complex o
)

Implementation

Complex operator +(Complex o) => Complex(re + o.re, im + o.im);