sinhInverse property Null safety

NormalOperation sinhInverse
final

Implementation

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