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 @@ - + Zip Iterator @@ -12,7 +12,6 @@ -

Zip Iterator

@@ -30,6 +29,7 @@
Copyright David Abrahams and Thomas Becker 2003. All rights reserved
+
@@ -44,17 +44,17 @@ the results of dereferencing the individual iterators.
-

zip_iterator synopsis

+

zip_iterator synopsis

 template<typename IteratorTuple>
 class zip_iterator
@@ -102,11 +102,11 @@ iterators, then iterator_categoryboost::random_access_traversal_tag.

-

zip_iterator requirements

+

zip_iterator requirements

All iterator types in the argument IteratorTuple shall model Readable Iterator.

-

zip_iterator models

+

zip_iterator models

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.

-

zip_iterator operations

+

zip_iterator operations

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.
-

Examples

+

Examples

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.

diff --git a/doc/zip_iterator.pdf b/doc/zip_iterator.pdf index 424815d..587950d 100755 Binary files a/doc/zip_iterator.pdf and b/doc/zip_iterator.pdf differ diff --git a/doc/zip_iterator_eg.rst b/doc/zip_iterator_eg.rst index 77e23ab..9016708 100755 --- a/doc/zip_iterator_eg.rst +++ b/doc/zip_iterator_eg.rst @@ -110,8 +110,3 @@ sequence containing the products of the elements of ``vect_1`` and ), tuple_multiplies() ); - - -The source code for these examples can be found `here`__. - -__ ../example/zip_iterator_examples.cpp