atanh method

double atanh()

Returns the hyperbolic arc-tangent of this num.

Implementation

double atanh() => ((1 + this) / (1 - this)).log() / 2;