add method

DD add(
  1. double y
)

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

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

Implementation

DD add(double y) {
  return copy(this).selfAdd(y);
}