Returns the hyperbolic arc-cosine of x.
Special cases:
pub fn acosh(x: anytype) @TypeOf(x)
pub fn acosh(x: anytype) @TypeOf(x) {
const T = @TypeOf(x);
return switch (T) {
f32 => acosh32(x),
f64 => acosh64(x),
else => @compileError("acosh not implemented for " ++ @typeName(T)),
};
}