@mikuroxina/mini-fn
    Preparing search index...

    Function zip3

    • Zips three lists as the list of tuple.

      Type Parameters

      • T

      Parameters

      Returns <U>(bList: List.List<U>) => <V>(cList: List.List<V>) => List.List<[T, U, V]>

      The zipped list.

      Examples

      const aList = fromArray([1, 4, 2]);
      const bList = fromArray([3, 5, 2]);
      const cList = fromArray([3, 8, 4, 7, 6]);

      expect(toArray(zip3(aList)(bList)(cList))).toStrictEqual([
      [1, 3, 3],
      [4, 5, 8],
      [2, 2, 4],
      ]);