UNPKG

double-double

Version:

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

10 lines (9 loc) 207 B
/** * Add one unit in the last place (ulp) to the given number. * * * subnormal numbers (and 0) are returned unaltered * * @internal */ declare function add1Ulp(n: number): number; export { add1Ulp };