UNPKG

double-double

Version:

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

12 lines (11 loc) 276 B
/** * Converts the given double-double precision value to a string and returns the * result. * * * there will always be enough decimal digits returned but some could be * extraneous. * * @param dd */ declare function ddToStr(dd: number[]): string; export { ddToStr };