neg method

  1. @override
double neg(
  1. double a
)
override

Computes the additive inverse: -a.

Implementation

@override
double neg(double a) => -a;