isPositive method

bool isPositive()

Tests whether this value is greater than 0.

@return true if this value is greater than 0

Implementation

bool isPositive() {
  return hi > 0.0 || (hi == 0.0 && lo > 0.0);
}