atan method

Complex atan()

Computes the arc-tangent of this complex number.

Implementation

Complex atan() => ((this + i) / (i - this)).log() * i * 0.5;