invert method

  1. @override
JubJubNativeFq? invert()
override

Implementation

@override
JubJubNativeFq? invert() {
  if (isZero()) return null;
  return _exp(p - BigInt.two);
}