forked from boostorg/iterator
Issue 9.23, 9.35
[SVN r21734]
This commit is contained in:
@ -148,8 +148,7 @@ interoperable with ``X``.
|
|||||||
| | | |Iterator |
|
| | | |Iterator |
|
||||||
+--------------------+----------------------+-------------------------------------+---------------------------+
|
+--------------------+----------------------+-------------------------------------+---------------------------+
|
||||||
|``c.equal(y)`` |convertible to bool |true iff ``c`` and ``y`` refer to the|Single Pass Iterator |
|
|``c.equal(y)`` |convertible to bool |true iff ``c`` and ``y`` refer to the|Single Pass Iterator |
|
||||||
| | |same position. Implements ``c == y``| |
|
| | |same position. | |
|
||||||
| | |and ``c != y``. | |
|
|
||||||
+--------------------+----------------------+-------------------------------------+---------------------------+
|
+--------------------+----------------------+-------------------------------------+---------------------------+
|
||||||
|``a.increment()`` |unused | |Incrementable Iterator |
|
|``a.increment()`` |unused | |Incrementable Iterator |
|
||||||
+--------------------+----------------------+-------------------------------------+---------------------------+
|
+--------------------+----------------------+-------------------------------------+---------------------------+
|
||||||
@ -159,13 +158,9 @@ interoperable with ``X``.
|
|||||||
|``a.advance(n)`` |unused | |Random Access Traversal |
|
|``a.advance(n)`` |unused | |Random Access Traversal |
|
||||||
| | | |Iterator |
|
| | | |Iterator |
|
||||||
+--------------------+----------------------+-------------------------------------+---------------------------+
|
+--------------------+----------------------+-------------------------------------+---------------------------+
|
||||||
|``c.distance_to(b)``|convertible to |equivalent to ``distance(c, b)`` |Random Access Traversal |
|
|``c.distance_to(z)``|convertible to |equivalent to ``distance(c, X(z))``. |Random Access Traversal |
|
||||||
| |``F::difference_type``| |Iterator |
|
| |``F::difference_type``| |Iterator |
|
||||||
+--------------------+----------------------+-------------------------------------+---------------------------+
|
+--------------------+----------------------+-------------------------------------+---------------------------+
|
||||||
|``c.distance_to(z)``|convertible to |equivalent to ``distance(c, z)``. |Random Access Traversal |
|
|
||||||
| |``F::difference_type``|Implements ``c - z``, ``c < z``, ``c |Iterator |
|
|
||||||
| | |<= z``, ``c > z``, and ``c >= c``. | |
|
|
||||||
+--------------------+----------------------+-------------------------------------+---------------------------+
|
|
||||||
|
|
||||||
.. _facade iterator category:
|
.. _facade iterator category:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user