Files
iterator/doc/zip_iterator_abstract.rst
Dave Abrahams 17c373ded3 Added zip_iterator docs
[SVN r21988]
2004-01-27 04:12:54 +00:00

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.