isZero method

bool isZero()

Tests whether this value is equal to 0.

@return true if this value is equal to 0

Implementation

bool isZero() {
  return hi == 0.0 && lo == 0.0;
}