selfMultiply method

DD selfMultiply(
  1. double 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 selfMultiply(double y) {
  return selfMultiplyHiLo(y, 0.0);
}