-
Notifications
You must be signed in to change notification settings - Fork 7
/
findLastIndex.ts
37 lines (30 loc) · 1.23 KB
/
findLastIndex.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2020 Jozty. All rights reserved. MIT license.
import type { PH, Predicate1 } from './utils/types.ts';
import curryN from './utils/curry_n.ts';
import { dispatch } from './utils/dispatch.ts';
import FindLastIdxTransformer from './utils/Transformers/findLastIndex.ts';
// @types
type FindLastIndex_2<T> = (list: T[]) => number;
type FindLastIndex_1<T> = (predicate: Predicate1<T>) => number;
type FindLastIndex =
& (<T>(predicate: Predicate1<T>) => FindLastIndex_2<T>)
& (<T>(predicate: PH, list: T[]) => FindLastIndex_1<T>)
& (<T>(predicate: Predicate1<T>, list: T[]) => number);
function _findLastIndex<T>(predicate: Predicate1<T>, list: T[]) {
for (let i = list.length - 1; i >= 0; i--) {
if (predicate(list[i])) return i;
}
return -1;
}
const dispatched = dispatch(FindLastIdxTransformer, _findLastIndex);
/**
* Returns index of last element of the list which matches the predicate, or
* `-1` if no element matches.
*
* Acts as a transducer if a transformer is passed in place of `list`
*
* const xs = [{a: 1}, {a: 2}, {a: 3}]
* Fae.find(Fae.propEq('a', 2))(xs) //=> {a: 2}
* Fae.find(Fae.propEq('a', 4))(xs) //=> undefined
*/
export const findLastIndex: FindLastIndex = curryN(2, dispatched);