UNPKG

double-double

Version:

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

8 lines (7 loc) 249 B
/** * Returns the bit-length of the significand of the given number in such a way * that trailing zeros are not counted. * @param a a double precision floating point number */ declare function bitLength(a: number): number; export { bitLength };