UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

11 lines 463 B
/** * @template T,V * @param {T[]|ArrayLike<T>|Float32Array} array * @param {V} el * @param {function(V,T):number} compareFunction * @param {number} [minIndex] * @param {number} [maxIndex] * @return {number} Index */ export function binarySearchHighIndex<T, V>(array: Float32Array | ArrayLike<T> | T[], el: V, compareFunction: (arg0: V, arg1: T) => number, minIndex?: number, maxIndex?: number): number; //# sourceMappingURL=binarySearchHighIndex.d.ts.map