selfMultiplyDD method

DD selfMultiplyDD(
  1. DD y
)

Multiplies this object by the argument, returning this. To prevent altering constants, this method must only be used on values known to be newly created.

@param y the value to multiply by @return this object, multiplied by y

Implementation

DD selfMultiplyDD(DD y) {
  return selfMultiplyHiLo(y.hi, y.lo);
}