You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
502 B

4 months ago
/**
* array[lo, hi) x i
* https://github.com/d3/d3-array/blob/master/src/bisector.js
* @param array
* @param x
* @param lo
* @param hi
* @returns
*/
export declare function bisect(array: any[], x: number, lo?: number, hi?: number, getter?: (any: any) => any): number;