• This method is like _.unzip except that it accepts an iteratee to specify how regrouped values should be combined. The iteratee is invoked with four arguments: (accumulator, value, index, group).

    Type Parameters

    • T
    • TResult

    Parameters

    • array: undefined | null | List<List<T>>

      The array of grouped elements to process.

    • iteratee: ((...values: T[]) => TResult)

      The function to combine regrouped values.

    Returns TResult[]

    Returns the new array of regrouped elements.

  • Type Parameters

    • T

    Parameters

    • array: undefined | null | List<List<T>>

    Returns T[][]

    _.unzipWith