Returns the hyperbolic cosine of x.
Special Cases:
pub fn cosh(x: anytype) @TypeOf(x)
pub fn cosh(x: anytype) @TypeOf(x) { const T = @TypeOf(x); return switch (T) { f32 => cosh32(x), f64 => cosh64(x), else => @compileError("cosh not implemented for " ++ @typeName(T)), }; }