Calculates the hyperbolic cosine of x.
import std.math.constants : E; import std.math.operations : isClose; assert(cosh(0.0) == 1.0); assert(cosh(1.0).isClose((E + 1.0 / E) / 2));
See Implementation
Calculates the hyperbolic cosine of x.