UNPKG

double-double

Version:

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

8 lines (7 loc) 232 B
/** * Returns the true exponent of the lsb that is set of the given number or * NaN if a === 0 or +-inf or NaN. * @param a An array of numbers to check */ declare function lsbExponent(a: number): number; export { lsbExponent };