* 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)
| 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 |
nothing calls this directly
no test coverage detected