asinh function

double asinh(
  1. double x
)

Implementation

double asinh(double x) => math.log(x + math.sqrt(x * x + 1));