coshInverse property Null safety

NormalOperation coshInverse
final

Implementation

static final NormalOperation coshInverse = NormalOperation.floatOnly(
    floatCalc: (Model m) {
      m.resultXF = Real.acosh(m.xF);
    },
    complexCalc: (Model m) {
      // Always in radians - see 15C manual p. 131, "For the trigonometric..."
      m.resultXC = m.xC.acosh();
    },
    name: 'COSH-1');