operator - method
Implementation
@override
JubJubNativeFq operator -(JubJubNativeFq other) {
final BigInt diff = v - other.v;
return JubJubNativeFq.nP(diff.isNegative ? diff + p : diff);
}
@override
JubJubNativeFq operator -(JubJubNativeFq other) {
final BigInt diff = v - other.v;
return JubJubNativeFq.nP(diff.isNegative ? diff + p : diff);
}