Takaro - v0.4.11
    Preparing search index...

    Function sortedIndexBy

    • This method is like _.sortedIndex 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).

      Type Parameters

      • T

      Parameters

      • array: List<T> | null | undefined

        The sorted array to inspect.

      • value: T

        The value to evaluate.

      • Optionaliteratee: ValueIteratee<T>

        The iteratee invoked per element.

      Returns number

      Returns the index at which value should be inserted into array.

      var dict = { 'thirty': 30, 'forty': 40, 'fifty': 50 };

      _.sortedIndexBy(['thirty', 'fifty'], 'forty', _.propertyOf(dict));
      // => 1

      // using the `_.property` iteratee shorthand
      _.sortedIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x');
      // => 0