isNegative method

bool isNegative()

Returns true if the sign bit of h is set (negative).

Implementation

bool isNegative() => (_h! & 0x8000) != 0;