MCPcopy
hub / github.com/lodash/lodash / sortedLastIndexBy

Function sortedLastIndexBy

lodash.js:8146–8148  ·  view source on GitHub ↗

* 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). * * @static * @memberOf _ * @since 4.0.0 * @c

(array, value, iteratee)

Source from the content-addressed store, hash-verified

8144 * // => 1
8145 */
8146 function sortedLastIndexBy(array, value, iteratee) {
8147 return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true);
8148 }
8149
8150 /**
8151 * This method is like `_.lastIndexOf` except that it performs a binary

Callers

nothing calls this directly

Calls 2

baseSortedIndexByFunction · 0.85
getIterateeFunction · 0.85

Tested by

no test coverage detected