equals method

bool equals(
  1. DD y
)

Tests whether this value is equal to another DoubleDouble value.

@param y a DoubleDouble value @return true if this value = y

Implementation

bool equals(DD y) {
  return hi == y.hi && lo == y.lo;
}