diff --git a/doc/zip_iterator.html b/doc/zip_iterator.html index 060bd13..95e8142 100755 --- a/doc/zip_iterator.html +++ b/doc/zip_iterator.html @@ -3,7 +3,7 @@
- +Copyright David Abrahams and Thomas Becker 2003. All rights reserved |
template<typename IteratorTuple> class zip_iterator @@ -102,11 +102,11 @@ iterators, then iterator_category but no longer to boost::random_access_traversal_tag.
All iterator types in the argument IteratorTuple shall model Readable Iterator.
The resulting zip_iterator models Readable Iterator.
The fact that the zip_iterator models only Readable Iterator does not prevent you from modifying the values that the individual iterators point @@ -128,7 +128,7 @@ models the least refined standard traversal concept in this set.
is interoperable with IteratorTuple2.In addition to the operations required by the concepts modeled by zip_iterator, zip_iterator provides the following operations.
@@ -242,7 +242,7 @@ initialized to t.There are two main types of applications of the zip_iterator. The first one concerns runtime efficiency: If one has several controlled sequences of the same length that must be somehow processed, e.g., with the @@ -340,7 +340,6 @@ the_transform_iterator it_end( tuple_multiplies<double>() ); -
The source code for these examples can be found here.