atanh method

Complex atanh()

Computes the hyperbolic arc-tangent of this complex number.

Implementation

Complex atanh() => ((this + one) / (one - this)).log() * 0.5;