added make_xxx functions for some of the iterators

[SVN r21611]
This commit is contained in:
Jeremy Siek
2004-01-12 01:30:47 +00:00
parent c6814925ac
commit 45b6a92f61
22 changed files with 626 additions and 1729 deletions

9
doc/make_counting_iterator.rst Executable file
View File

@ -0,0 +1,9 @@
::
template <class Incrementable>
counting_iterator<Incrementable> make_counting_iterator(Incrementable x);
:Returns: An instance of ``counting_iterator<Incrementable>``
with ``current`` constructed from ``x``.