operator unary- method

AffinePointt operator unary-()

Negates this point and returns the result.

Implementation

AffinePointt operator -() {
  return AffinePointt(curve, x, curve.p - y, order: order);
}