UNPKG

simple-statistics

Version:
13 lines (11 loc) 240 B
/** * https://simple-statistics.github.io/docs/#bisect */ declare function bisect( func: (x: any) => number, start: number, end: number, maxIterations: number, errorTolerance: number ): number; export default bisect;