acosh method

double acosh()

Returns the hyperbolic arc-cosine of this num.

Implementation

double acosh() => (this + (this * this - 1).sqrt()).log();