FeIsNegative function

int FeIsNegative(
  1. FieldElement f
)

Implementation

int FeIsNegative(FieldElement f) {
  var s = Uint8List(32);
  FeToBytes(s, f);
  return s[0] & 1;
}