Lodash.sortedLastIndexBy

This method is like _.sortedLastIndex except that it accepts iteratee which is invoked for value and each element of array to compute their sort ranking. The iteratee is invoked with one argument: (value).

struct Lodash
nothrow @trusted @safe ref
sortedLastIndexBy
(
T
U
)
(
auto ref T value
,
auto ref U iteratee = U.init
)

Return Value

Type: auto ref

- Lodash chained on (number): the index at which value should be inserted into array.

Meta