Lodash.findLast

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

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

Return Value

Type: auto ref

- Lodash chained on (*): the matched element, else undefined.

Meta