UNPKG

double-double

Version:

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

9 lines (8 loc) 285 B
/** * Returns the exact result of subtracting b from a. * * @param a minuend - a double-double precision floating point number * @param b subtrahend - a double-double precision floating point number */ declare function twoDiff(a: number, b: number): number[]; export { twoDiff };