ixfx
    Preparing search index...

    Function zip

    Combine same-positioned items from several iterables

    zip( [1, 2, 3], [4, 5, 6], [7, 8, 9] );
    Yields: [ [1, 4, 7], [2, 5, 8], [3, 6, 9] ]
    • Type Parameters

      • V

      Parameters

      • ...its: readonly AsyncIterable<V, any, any>[]

      Returns Generator<V[]>

    • Type Parameters

      • V

      Parameters

      • ...its: readonly Iterable<V, any, any>[]

      Returns Generator<V>