@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
11 lines • 405 B
TypeScript
/**
* @template T,V
* @param {T[]} array
* @param {V} el
* @param {function(V,T):number} compareFunction
* @param {number} [minIndex]
* @param {number} [maxIndex]
* @return {number} Index
*/
export function binarySearchLowIndex<T, V>(array: T[], el: V, compareFunction: (arg0: V, arg1: T) => number, minIndex?: number, maxIndex?: number): number;
//# sourceMappingURL=binarySearchLowIndex.d.ts.map