new files for iterator concepts

[SVN r22004]
This commit is contained in:
Jeremy Siek
2004-01-27 17:03:46 +00:00
parent b502873f00
commit 506517191c
27 changed files with 7175 additions and 0 deletions

21
doc/LvalueIterator.rst Executable file
View File

@ -0,0 +1,21 @@
Lvalue Iterator Concept
.......................
The *Lvalue Iterator* concept adds the requirement that the return
type of ``operator*`` type be a reference to the value type of the
iterator.
+-------------------------------------------------------------+
| Lvalue Iterator Requirements |
+-------------+-----------+-----------------------------------+
|Expression |Return Type|Note/Assertion |
+=============+===========+===================================+
|``*a`` | ``T&`` |``T`` is *cv* |
| | |``iterator_traits<X>::value_type`` |
| | |where *cv* is an optional |
| | |cv-qualification. |
| | |pre: ``a`` is |
| | |dereferenceable. If ``a |
| | |== b`` then ``*a`` is |
| | |equivalent to ``*b``. |
+-------------+-----------+-----------------------------------+