• 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) => TResult)

      The function to combine regrouped values.

        • (...values): TResult
        • Parameters

          • Rest ...values: T[]

          Returns TResult

    Returns TResult[]

    Returns the new array of regrouped elements.

  • Type Parameters

    • T

    Parameters

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

    Returns T[][]

    See

    _.unzipWith

Generated using TypeDoc