conjugate method

Complex conjugate()

The sign of the imaginary part of current object is changed and the result is returned in a new Complex instance.

Implementation

Complex conjugate() => Complex(real, -imaginary);