mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-20 16:12:10 +02:00
7 lines
344 B
ReStructuredText
Executable File
7 lines
344 B
ReStructuredText
Executable File
The zip iterator provides the ability to parallel-iterate
|
|
over several controlled sequences simultaneously. A zip
|
|
iterator is constructed from a tuple of iterators. Moving
|
|
the zip iterator moves all the iterators in parallel.
|
|
Dereferencing the zip iterator returns a tuple that contains
|
|
the results of dereferencing the individual iterators.
|