quaeratin
Version:
An extended precision floating point library (as per Shewchuk) - precision only limited by overflow / underflow
13 lines • 432 B
JavaScript
import { eLongDivide as eLongDivide_ } from "./e-long-divide.js";
// We *have* to do the below❗ The assignee is a getter❗ The assigned is a pure function❗
const eLongDivide = eLongDivide_;
/**
* Returns the result of the integer division a/b.
*
* * **precondition:** a and b must be integers, b !== 0
*/
function eIntDiv(a, b) {
return eLongDivide(a, b).div;
}
export { eIntDiv };
//# sourceMappingURL=e-int-div.js.map