isNegative method

int isNegative()

IsNegative returns 1 if v is negative, and 0 otherwise.

Implementation

int isNegative() {
  return Bytes()[0] & 1;
}