addDD method

DD addDD(
  1. DD y
)

Returns a new DoubleDouble whose value is (this + y).

@param y the addend @return (this + y)

Implementation

DD addDD(DD y) {
  return copy(this).selfAddDD(y);
}