UNPKG

quaeratin

Version:

An extended precision floating point library (as per Shewchuk) - precision only limited by overflow / underflow

9 lines (8 loc) 198 B
/** * Returns the exact result of subtracting b from a (as a floating point * expansion). * @param a * @param b */ declare function twoDiff(a: number, b: number): number[]; export { twoDiff };