summaryrefslogtreecommitdiff
path: root/doc/html/ForwardIterator.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ForwardIterator.html')
-rw-r--r--doc/html/ForwardIterator.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/ForwardIterator.html b/doc/html/ForwardIterator.html
index 42b70dbdc6..d0c5b33fc1 100644
--- a/doc/html/ForwardIterator.html
+++ b/doc/html/ForwardIterator.html
@@ -6,7 +6,7 @@
<link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
-<link rel="up" href="idp14900640-bb.html#concepts.reference" title="Concept reference">
+<link rel="up" href="idp33959088-bb.html#concepts.reference" title="Concept reference">
<link rel="prev" href="OutputIterator.html" title="Concept OutputIterator">
<link rel="next" href="BidirectionalIterator.html" title="Concept BidirectionalIterator">
</head>
@@ -21,7 +21,7 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="OutputIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="idp14900640-bb.html#concepts.reference"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BidirectionalIterator.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="OutputIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="idp33959088-bb.html#concepts.reference"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BidirectionalIterator.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="ForwardIterator"></a><div class="titlepage"></div>
@@ -30,7 +30,7 @@
<p>ForwardIterator</p>
</div>
<div class="refsect1">
-<a name="idp634376432"></a><h2>Description</h2>
+<a name="idp615283808"></a><h2>Description</h2>
<p>A forward iterator is an iterator that can read through a sequence of
values. It is multi-pass (old values of the iterator can be
re-used), and can be either mutable (data pointed to by it can be
@@ -41,14 +41,14 @@
incrementable).</p>
</div>
<div class="refsect1">
-<a name="idp634378240"></a><h2>Refinement of</h2>
+<a name="idp615285616"></a><h2>Refinement of</h2>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p><a class="link" href="InputIterator.html" title="Concept InputIterator">InputIterator</a></p></li>
<li class="listitem"><p><a class="link" href="OutputIterator.html" title="Concept OutputIterator">OutputIterator</a></p></li>
</ul></div>
</div>
<div class="refsect1">
-<a name="idp634380640"></a><h2>Associated types</h2>
+<a name="idp615288016"></a><h2>Associated types</h2>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<p><span class="bold"><strong>value_type</strong></span></p>
@@ -63,7 +63,7 @@
</ul></div>
</div>
<div class="refsect1">
-<a name="idp634385232"></a><h2>Notation</h2>
+<a name="idp615292608"></a><h2>Notation</h2>
<div class="variablelist"><dl class="variablelist">
<dt><span class="term">Iter</span></dt>
<dd>A type playing the role of iterator-type in the <a class="link" href="ForwardIterator.html" title="Concept ForwardIterator">ForwardIterator</a> concept.</dd>
@@ -76,7 +76,7 @@
</dl></div>
</div>
<div class="refsect1">
-<a name="idp634389728"></a><h2>Type expressions</h2>
+<a name="idp615297104"></a><h2>Type expressions</h2>
<div class="variablelist"><dl class="variablelist">
<dt><span class="term">Category tag</span></dt>
<dd><p><span class="type">category</span> must be
@@ -85,7 +85,7 @@
</dl></div>
</div>
<div class="refsect1">
-<a name="idp634391888"></a><h2>Valid expressions</h2>
+<a name="idp615299264"></a><h2>Valid expressions</h2>
<div class="informaltable"><table class="table">
<colgroup>
<col>
@@ -145,13 +145,13 @@
</table></div>
</div>
<div class="refsect1">
-<a name="idp634407568"></a><h2>Complexity</h2>
+<a name="idp615314944"></a><h2>Complexity</h2>
<p>
All iterator operations must take amortized constant time.
</p>
</div>
<div class="refsect1">
-<a name="idp634408320"></a><h2>Invariants</h2>
+<a name="idp615315696"></a><h2>Invariants</h2>
<div class="variablelist"><dl class="variablelist">
<dt><span class="term">Predecrement must return object</span></dt>
<dd><p>
@@ -164,7 +164,7 @@
</dl></div>
</div>
<div class="refsect1">
-<a name="idp634412592"></a><h2>Models</h2>
+<a name="idp615319968"></a><h2>Models</h2>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><span class="simplelist"><span class="type">T *</span></span></li>
<li class="listitem"><span class="simplelist"><span class="type">std::hash_set&lt;T&gt;::iterator</span></span></li>
@@ -203,7 +203,7 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="OutputIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="idp14900640-bb.html#concepts.reference"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BidirectionalIterator.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="OutputIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="idp33959088-bb.html#concepts.reference"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BidirectionalIterator.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>