Returns the hyperbolic cosine of this num.
double cosh() { final y = exp(); return (y + 1 / y) / 2; }