add method

相加

Implementation

ECFieldElementFp add(ECFieldElementFp b) {
  return ECFieldElementFp(q, (x + b.toBigInteger()) % q);
}