multiply method

DD multiply(
  1. double y
)

Returns a new DoubleDouble whose value is (this * y).

@param y the multiplicand @return (this * y)

Implementation

DD multiply(double y) {
  if (y.isNaN) return createNaN();
  return copy(this).selfMultiplyHiLo(y, 0.0);
}