conj method

Complex conj()

Returns the complex conjugate of the number (real - imag * i).

Implementation

Complex conj() => Complex(_real, -_imag);