iter-fns - v0.13.0
    Preparing search index...

    Function zip

    • Convolves iterables together by iterating multiple iterables at the same time.

      Iteration will stop at the shortest iterable.

      Type Parameters

      • Ts extends unknown[]

        types of the items

      Parameters

      Returns ReverseSizedIterable<Ts>

    • Convolves iterables together by iterating multiple iterables at the same time.

      Iteration will stop at the shortest iterable.

      Type Parameters

      • Ts extends unknown[]

        types of the items

      Parameters

      • ...iterables: { [I in string | number | symbol]: SizedIterable<Ts[I<I>]> }

        the iterables

      Returns SizedIterable<Ts>

    • Convolves iterables together by iterating multiple iterables at the same time.

      Iteration will stop at the shortest iterable.

      Type Parameters

      • Ts extends unknown[]

        types of the items

      Parameters

      • ...iterables: { [I in string | number | symbol]: Iterable<Ts[I<I>]> }

        the iterables

      Returns Iterable<Ts>