gt method

bool gt(
  1. DD y
)

Tests whether this value is greater than another DoubleDouble value. @param y a DoubleDouble value @return true if this value > y

Implementation

bool gt(DD y) {
  return (hi > y.hi) || (hi == y.hi && lo > y.lo);
}