feIsnegative static method
Implementation
static int feIsnegative(FieldElement f) {
final List<int> s = List<int>.filled(32, 0);
feTobytes(s, f);
return s[0] & 1;
}
static int feIsnegative(FieldElement f) {
final List<int> s = List<int>.filled(32, 0);
feTobytes(s, f);
return s[0] & 1;
}