asinh

Computes the inverse hyperbolic sine of the value x.

expect fun asinh(x: Double): Double(source)
import kotlin.math.asinh

fun main() {
    val x = 2.5
    val result = asinh(x)
    println("asinh($x) = $result")
}

Source