le method

bool le(
  1. DD y
)

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

Implementation

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