lt method

bool lt(
  1. DD y
)

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

Implementation

bool lt(DD y) {
  return (hi < y.hi) || (hi == y.hi && lo < y.lo);
}