apiref
bsearch@1.0.0

firstIndexAsync()  Function

Returns the first index in array whose value satisfies the predicate.

Signature

export declare function firstIndexAsync<T>(array: readonly T[], predicate: (value: T, index: number, array: readonly T[]) => PromiseLike<boolean>): Promise<number>;

Parameters

ParameterTypeDescription
arrayreadonly T[]

The array to search.

predicate(value: T, index: number, array: readonly T[]) => PromiseLike<boolean>

A predicate. There should exist some index I such that predicate(array[i]) returns true for all i >= I and returns false otherwise.

(Returns)Promise<number>

A promise that resolves to the first index in array whose value satisfies the predicate, or -1 if no such index exists.