/**
* Returns the result of multiplying the given double-double by -2.
* * The result is exact
* @param f a double-double precision floating point number
*/functionddMultByNeg2(f) {
return [-2 * f[0], -2 * f[1]];
}
export { ddMultByNeg2 };
//# sourceMappingURL=dd-mult-by-neg-2.js.map