fastEqual method

int fastEqual(
  1. FieldElement other
)

Implementation

int fastEqual(FieldElement other) {
  final b = toByteArray();
  final c = other.toByteArray();
  return b.fastEqual(c);
}