UNPKG

double-double

Version:

Pure double-double precision functions *with strict error bounds*.

8 lines (7 loc) 233 B
/** * Returns the result of multiplying the given double-double by 4. * * The result is exact * @param f a double-double precision floating point number */ declare function ddMultBy4(f: number[]): number[]; export { ddMultBy4 };