Lodash.findLastIndex

This method is like _.findIndex except that it iterates over elements of collection from right to left.

struct Lodash
nothrow @trusted @safe ref
findLastIndex
(
T = Any
U = Any
)
(
auto ref T predicate = T.init
,
auto ref U fromIndex = U.init
)

Return Value

Type: auto ref

- Lodash chained on (number): the index of the found element, else -1.

Meta