neg method

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

Computes the additive inverse: -a.

Implementation

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