equals method

bool equals(
  1. ECFieldElementFp other
)

判断相等

Implementation

bool equals(ECFieldElementFp other) {
  if (other == this) return true;
  return (q == other.q && x == other.x);
}