isNegative method

bool isNegative()

Tests whether this value is less than 0.

@return true if this value is less than 0

Implementation

bool isNegative() {
  return hi < 0.0 || (hi == 0.0 && lo < 0.0);
}