subtractDD method

DD subtractDD(
  1. DD y
)

Computes a new DoubleDouble object whose value is (this - y).

@param y the subtrahend @return (this - y)

Implementation

DD subtractDD(DD y) {
  return addDD(y.negate());
}