sinh method

double sinh()

Returns the hyperbolic sine of this num.

Implementation

double sinh() {
  final y = exp();
  return (y - 1 / y) / 2;
}