@monstermann/fn
Version:
A utility library for TypeScript.
31 lines (29 loc) • 871 B
TypeScript
import { ArrayPredicate } from "./internals/types.js";
//#region src/array/findLastIndexOr.d.ts
/**
* `findLastIndexOr(target, predicate, or)`
*
* Returns the index of the last element in `target` that satisfies the provided `predicate` function. If no element satisfies the predicate, returns `or`.
*
* ```ts
* findLastIndexOr([1, 3, 2, 4], (x) => x > 2, -1); // 3
* findLastIndexOr([1, 2, 3, 4], (x) => x > 5, -1); // -1
* ```
*
* ```ts
* pipe(
* [1, 3, 2, 4],
* findLastIndexOr((x) => x > 2, -1),
* ); // 3
* pipe(
* [1, 2, 3, 4],
* findLastIndexOr((x) => x > 5, -1),
* ); // -1
* ```
*/
declare const findLastIndexOr: {
<T, U>(predicate: ArrayPredicate<T>, or: U): (target: readonly T[]) => number | U;
<T, U>(target: readonly T[], predicate: ArrayPredicate<T>, or: U): number | U;
};
//#endregion
export { findLastIndexOr };