Skip to content

Commit

Permalink
Copy docstring change from #27511
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholters committed Sep 20, 2018
1 parent 8375946 commit 6663c8f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions base/iterators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,11 @@ end
"""
zip(iters...)
For a set of iterable objects, return an iterable of tuples, where the `i`th tuple contains
the `i`th component of each input iterable.
Run multiple iterators at the same time, until any of them is exhausted. The value type of
the `zip` iterator is a tuple of values of its subiterators.
Note: `zip` orders the calls to its subiterators in such a way that stateful iterators will
not advance when another iterator finishes in the current iteration.
# Examples
```jldoctest
Expand Down

0 comments on commit 6663c8f

Please sign in to comment.