operator unary- method

FieldElement operator unary-()

Implementation

FieldElement operator -() {
  final List<int> h = List.filled(10, 0);
  for (int i = 0; i < 10; i++) {
    h[i] = -_t[i];
  }
  return FieldElement._fromConstList(h);
}