inv method

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

Computes the multiplicative inverse: 1 / a.

Implementation

@override
BigInt inv(BigInt a) => BigInt.one ~/ a;