Zips together elements from the input iterables into arrays.
Returns a function that accepts an input iterable of iterables and
yields arrays of elements from the input iterables, where the first elements of the input iterables
are combined, the second elements are combined, and so on.
The input iterable containing child iterables MUST be synchronous. The child iterables can be either synchronous or asynchronous.
Returns
A function that accepts an input iterable of iterables and returns an async iterable.
Zips together elements from the input iterables into arrays. Returns a function that accepts an input iterable of iterables and yields arrays of elements from the input iterables, where the first elements of the input iterables are combined, the second elements are combined, and so on.
The input iterable containing child iterables MUST be synchronous. The child iterables can be either synchronous or asynchronous.
Returns
A function that accepts an input iterable of iterables and returns an async iterable.
Example