selfAddDD method

DD selfAddDD(
  1. DD y
)

Adds the argument to the value of this. To prevent altering constants, this method must only be used on values known to be newly created.

@param y the addend @return this object, increased by y

Implementation

DD selfAddDD(DD y) {
  return selfAddHiLo(y.hi, y.lo);
}