diff --git a/doc/counting_iterator.html b/doc/counting_iterator.html index 0e9af8f..731a220 100644 --- a/doc/counting_iterator.html +++ b/doc/counting_iterator.html @@ -45,15 +45,15 @@ adding an operator* that retur
template <
class Incrementable
@@ -81,13 +81,13 @@ the cases when the Incrementable
The Incrementable type must be Default Constructible, Copy Constructible, and Assignable. The default distance is an implementation defined signed integral type.
counting_iterator models Readable Lvalue Iterator.
Furthermore, if you wish to create a counting iterator that is a Forward Traversal Iterator, then the following expressions must be valid:
@@ -112,7 +112,7 @@ i < jIn addition to the operations required by the concepts modeled by counting_iterator, counting_iterator provides the following operations.
@@ -199,7 +199,7 @@ with current constructed fromThis example fills an array with numbers and a second array with pointers into the first array, using counting_iterator for both tasks. Finally indirect_iterator is used to print out the numbers @@ -229,12 +229,13 @@ std::cout << std::endl; indirectly printing out the numbers from 0 to 7 0 1 2 3 4 5 6 +
The source code for this example can be found here.