Skip to main content
Module

x/simplestatistics/src/bisect.d.ts

simple statistics for node & browser javascript
Go to Latest
File
/** * https://simplestatistics.org/docs/#bisect */declare function bisect( func: (x: any) => number, start: number, end: number, maxIterations: number, errorTolerance: number): number;
export default bisect;