selfDivide method

DD selfDivide(
  1. double y
)

Divides 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 divide by @return this object, divided by y

Implementation

DD selfDivide(double y) {
  return selfDivideHiLo(y, 0.0);
}