Returns true if the sign bit of h is set (negative).
bool isNegative() { return (_h & 0x8000) != 0; }