UNPKG

quaeratin

Version:

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

9 lines (8 loc) 295 B
/** * Returns a floating point expansion accurate to the given number of bits. * Extraneous bits are discarded. * @param a a floating point expansion * @param l the number of accurate bits to keep */ declare function eToBitlength(a: number[], l: number): number[]; export { eToBitlength };