doubleValue method

double doubleValue()

Converts this value to the nearest double-precision number.

@return the nearest double-precision number to this value

Implementation

double doubleValue() {
  return hi + lo;
}