negate method

DD negate()

Returns a new DoubleDouble whose value is -this.

@return -this

Implementation

DD negate() {
  if (isNaN()) return this;
  return DD.withHiLo(-hi, -lo);
}