summaryrefslogtreecommitdiff
path: root/doc/html/RandomAccessIterator.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/RandomAccessIterator.html')
-rw-r--r--[-rwxr-xr-x]doc/html/RandomAccessIterator.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/RandomAccessIterator.html b/doc/html/RandomAccessIterator.html
index ab7b609917..17e0117220 100755..100644
--- a/doc/html/RandomAccessIterator.html
+++ b/doc/html/RandomAccessIterator.html
@@ -5,7 +5,7 @@
<link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
-<link rel="up" href="id319082-bb.html#concepts.reference" title="Concept reference">
+<link rel="up" href="id319790-bb.html#concepts.reference" title="Concept reference">
<link rel="prev" href="BidirectionalIterator.html" title="Concept BidirectionalIterator">
<link rel="next" href="DefaultConstructible.html" title="Concept DefaultConstructible">
</head>
@@ -20,7 +20,7 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="BidirectionalIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="id319082-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="DefaultConstructible.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="BidirectionalIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="id319790-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="DefaultConstructible.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="RandomAccessIterator"></a><div class="titlepage"></div>
@@ -29,7 +29,7 @@
<p>RandomAccessIterator</p>
</div>
<div class="refsect1">
-<a name="id1127730"></a><h2>Description</h2>
+<a name="id1127927"></a><h2>Description</h2>
<p>A random access iterator is an iterator that can read through
a sequence of values. It can move in either direction through the
sequence (by any amount in constant time), and can be either mutable
@@ -40,14 +40,14 @@
dereferenceable or incrementable).</p>
</div>
<div class="refsect1">
-<a name="id1127749"></a><h2>Refinement of</h2>
+<a name="id1127946"></a><h2>Refinement of</h2>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem"><p><a class="link" href="BidirectionalIterator.html" title="Concept BidirectionalIterator">BidirectionalIterator</a></p></li>
<li class="listitem"><p><a class="link" href="LessThanComparable.html" title="Concept LessThanComparable">LessThanComparable</a></p></li>
</ul></div>
</div>
<div class="refsect1">
-<a name="id1127771"></a><h2>Associated types</h2>
+<a name="id1127968"></a><h2>Associated types</h2>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem">
<p><span class="bold"><strong>value_type</strong></span></p>
@@ -68,7 +68,7 @@
</ul></div>
</div>
<div class="refsect1">
-<a name="id1127828"></a><h2>Notation</h2>
+<a name="id1128025"></a><h2>Notation</h2>
<div class="variablelist"><dl>
<dt><span class="term">Iter</span></dt>
<dd>A type playing the role of iterator-type in the <a class="link" href="RandomAccessIterator.html" title="Concept RandomAccessIterator">RandomAccessIterator</a> concept.</dd>
@@ -85,7 +85,7 @@
</dl></div>
</div>
<div class="refsect1">
-<a name="id1127883"></a><h2>Type expressions</h2>
+<a name="id1128080"></a><h2>Type expressions</h2>
<div class="variablelist"><dl>
<dt><span class="term">Category tag</span></dt>
<dd><p><span class="type">category</span> must be
@@ -94,7 +94,7 @@
</dl></div>
</div>
<div class="refsect1">
-<a name="id1127902"></a><h2>Valid expressions</h2>
+<a name="id1128099"></a><h2>Valid expressions</h2>
<div class="informaltable"><table class="table">
<colgroup>
<col>
@@ -200,13 +200,13 @@
</table></div>
</div>
<div class="refsect1">
-<a name="id1128285"></a><h2>Complexity</h2>
+<a name="id1128482"></a><h2>Complexity</h2>
<p>
All iterator operations must take amortized constant time.
</p>
</div>
<div class="refsect1">
-<a name="id1128292"></a><h2>Models</h2>
+<a name="id1128489"></a><h2>Models</h2>
<div class="itemizedlist"><ul class="itemizedlist" 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::vector&lt;T&gt;::iterator</span></span></li>
@@ -216,7 +216,7 @@
</ul></div>
</div>
<div class="refsect1">
-<a name="id1128338"></a><h2>See also</h2>
+<a name="id1128536"></a><h2>See also</h2>
<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p><a class="link" href="LessThanComparable.html" title="Concept LessThanComparable">LessThanComparable</a></p></li></ul></div>
</div>
</div>
@@ -252,7 +252,7 @@
</tr></table>
<hr>
<div class="spirit-nav">
-<a accesskey="p" href="BidirectionalIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="id319082-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="DefaultConstructible.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
+<a accesskey="p" href="BidirectionalIterator.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="id319790-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="DefaultConstructible.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>