operator unary- method
Negates this point and returns the result.
Implementation
AffinePointt operator -() {
return AffinePointt(curve, x, curve.p - y, order: order);
}
Negates this point and returns the result.
AffinePointt operator -() {
return AffinePointt(curve, x, curve.p - y, order: order);
}