Added zip_iterator docs

[SVN r21988]
This commit is contained in:
Dave Abrahams
2004-01-27 04:12:54 +00:00
parent 09e1cb9a38
commit 17c373ded3
6 changed files with 660 additions and 0 deletions

6
doc/zip_iterator_abstract.rst Executable file
View File

@@ -0,0 +1,6 @@
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.