forked from boostorg/iterator
164 lines
9.4 KiB
HTML
164 lines
9.4 KiB
HTML
![]() |
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<meta name="generator" content="Docutils 0.3.0: http://docutils.sourceforge.net/" />
|
||
|
<title>Indirect Iterator</title>
|
||
|
<meta name="author" content="David Abrahams, Jeremy Siek, Thomas Witt" />
|
||
|
<meta name="organization" content="Boost Consulting, Indiana University Open Systems Lab, University of Hanover Institute for Transport Railway Operation and Construction" />
|
||
|
<meta name="date" content="2003-08-05" />
|
||
|
<meta name="copyright" content="Copyright Dave Abrahams, Jeremy Siek, and Thomas Witt 2003. All rights reserved" />
|
||
|
<link rel="stylesheet" href="default.css" type="text/css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="document" id="indirect-iterator">
|
||
|
<h1 class="title">Indirect Iterator</h1>
|
||
|
<table class="docinfo" frame="void" rules="none">
|
||
|
<col class="docinfo-name" />
|
||
|
<col class="docinfo-content" />
|
||
|
<tbody valign="top">
|
||
|
<tr><th class="docinfo-name">Author:</th>
|
||
|
<td>David Abrahams, Jeremy Siek, Thomas Witt</td></tr>
|
||
|
<tr><th class="docinfo-name">Contact:</th>
|
||
|
<td><a class="first reference" href="mailto:dave@boost-consulting.com">dave@boost-consulting.com</a>, <a class="reference" href="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</a>, <a class="last reference" href="mailto:witt@ive.uni-hannover.de">witt@ive.uni-hannover.de</a></td></tr>
|
||
|
<tr><th class="docinfo-name">Organization:</th>
|
||
|
<td><a class="first reference" href="http://www.boost-consulting.com">Boost Consulting</a>, Indiana University <a class="reference" href="http://www.osl.iu.edu">Open Systems
|
||
|
Lab</a>, University of Hanover <a class="last reference" href="http://www.ive.uni-hannover.de">Institute for Transport
|
||
|
Railway Operation and Construction</a></td></tr>
|
||
|
<tr><th class="docinfo-name">Date:</th>
|
||
|
<td>2003-08-05</td></tr>
|
||
|
<tr><th class="docinfo-name">Copyright:</th>
|
||
|
<td>Copyright Dave Abrahams, Jeremy Siek, and Thomas Witt 2003. All rights reserved</td></tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<table class="field-list" frame="void" rules="none">
|
||
|
<col class="field-name" />
|
||
|
<col class="field-body" />
|
||
|
<tbody valign="top">
|
||
|
<tr class="field"><th class="field-name">abstract:</th><td class="field-body"></td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<p>The indirect iterator adapts an iterator by applying an <em>extra</em>
|
||
|
dereference inside of <tt class="literal"><span class="pre">operator*()</span></tt>. For example, this iterator
|
||
|
adaptor makes it possible to view a container of pointers
|
||
|
(e.g. <tt class="literal"><span class="pre">list<foo*></span></tt>) as if it were a container of the pointed-to type
|
||
|
(e.g. <tt class="literal"><span class="pre">list<foo></span></tt>) .</p>
|
||
|
<!-- At some point we should add the capability to handle
|
||
|
iterators over smart pointers, which the impl handles. -JGS -->
|
||
|
<div class="contents topic" id="table-of-contents">
|
||
|
<p class="topic-title"><a name="table-of-contents">Table of Contents</a></p>
|
||
|
<ul class="simple">
|
||
|
<li><a class="reference" href="#indirect-iterator-requirements" id="id1" name="id1"><tt class="literal"><span class="pre">indirect_iterator</span></tt> requirements</a></li>
|
||
|
<li><a class="reference" href="#indirect-iterator-operations" id="id2" name="id2"><tt class="literal"><span class="pre">indirect_iterator</span></tt> operations</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<pre class="literal-block">
|
||
|
template <
|
||
|
class Iterator
|
||
|
, class Value = use_default
|
||
|
, class Category = use_default
|
||
|
, class Reference = use_default
|
||
|
, class Difference = use_default
|
||
|
>
|
||
|
class indirect_iterator
|
||
|
: public iterator_adaptor</* see discussion */>
|
||
|
{
|
||
|
friend class iterator_core_access;
|
||
|
public:
|
||
|
indirect_iterator();
|
||
|
indirect_iterator(Iterator x);
|
||
|
template <
|
||
|
class Iterator2, class Value2, class Category2
|
||
|
, class Reference2, class Difference2
|
||
|
>
|
||
|
indirect_iterator(
|
||
|
indirect_iterator<
|
||
|
Iterator2, Value2, Category2, Reference2, Difference2
|
||
|
> const& y
|
||
|
, typename enable_if_convertible<Iterator2, Iterator>::type* = 0 // exposition
|
||
|
);
|
||
|
private: // as-if specification
|
||
|
typename indirect_iterator::reference dereference() const
|
||
|
{
|
||
|
return **this->base();
|
||
|
}
|
||
|
};
|
||
|
</pre>
|
||
|
<div class="section" id="indirect-iterator-requirements">
|
||
|
<h1><a class="toc-backref" href="#id1" name="indirect-iterator-requirements"><tt class="literal"><span class="pre">indirect_iterator</span></tt> requirements</a></h1>
|
||
|
<p>The <tt class="literal"><span class="pre">value_type</span></tt> of the <tt class="literal"><span class="pre">Iterator</span></tt> template parameter should
|
||
|
itself be dereferenceable. The return type of the <tt class="literal"><span class="pre">operator*</span></tt> for
|
||
|
the <tt class="literal"><span class="pre">value_type</span></tt> must be the same type as the <tt class="literal"><span class="pre">Reference</span></tt> template
|
||
|
parameter. The <tt class="literal"><span class="pre">Value</span></tt> template parameter will be the <tt class="literal"><span class="pre">value_type</span></tt>
|
||
|
for the <tt class="literal"><span class="pre">indirect_iterator</span></tt>, unless <tt class="literal"><span class="pre">Value</span></tt> is const. If <tt class="literal"><span class="pre">Value</span></tt>
|
||
|
is <tt class="literal"><span class="pre">const</span> <span class="pre">X</span></tt>, then <tt class="literal"><span class="pre">value_type</span></tt> will be <em>non-</em> <tt class="literal"><span class="pre">const</span> <span class="pre">X</span></tt>. The
|
||
|
default for <tt class="literal"><span class="pre">Value</span></tt> is</p>
|
||
|
<pre class="literal-block">
|
||
|
iterator_traits< iterator_traits<Iterator>::value_type >::value_type
|
||
|
</pre>
|
||
|
<p>If the default is used for <tt class="literal"><span class="pre">Value</span></tt>, then there must be a valid
|
||
|
specialization of <tt class="literal"><span class="pre">iterator_traits</span></tt> for the value type of the base
|
||
|
iterator.</p>
|
||
|
<p>The <tt class="literal"><span class="pre">Reference</span></tt> parameter will be the <tt class="literal"><span class="pre">reference</span></tt> type of the
|
||
|
<tt class="literal"><span class="pre">indirect_iterator</span></tt>. The default is <tt class="literal"><span class="pre">Value&</span></tt>.</p>
|
||
|
<p>The <tt class="literal"><span class="pre">Category</span></tt> parameter is the <tt class="literal"><span class="pre">iterator_category</span></tt> type for the
|
||
|
<tt class="literal"><span class="pre">indirect_iterator</span></tt>. The default is
|
||
|
<tt class="literal"><span class="pre">iterator_traits<Iterator>::iterator_category</span></tt>.</p>
|
||
|
<p>The indirect iterator will model the most refined standard traversal
|
||
|
concept that is modeled by the <tt class="literal"><span class="pre">Iterator</span></tt> type. The indirect
|
||
|
iterator will model the most refined standard access concept that is
|
||
|
modeled by the value type of <tt class="literal"><span class="pre">Iterator</span></tt>.</p>
|
||
|
</div>
|
||
|
<div class="section" id="indirect-iterator-operations">
|
||
|
<h1><a class="toc-backref" href="#id2" name="indirect-iterator-operations"><tt class="literal"><span class="pre">indirect_iterator</span></tt> operations</a></h1>
|
||
|
<p><tt class="literal"><span class="pre">indirect_iterator();</span></tt></p>
|
||
|
<table class="field-list" frame="void" rules="none">
|
||
|
<col class="field-name" />
|
||
|
<col class="field-body" />
|
||
|
<tbody valign="top">
|
||
|
<tr class="field"><th class="field-name">Requires:</th><td class="field-body"><tt class="literal"><span class="pre">Iterator</span></tt> must be Default Constructible.</td>
|
||
|
</tr>
|
||
|
<tr class="field"><th class="field-name">Returns:</th><td class="field-body">An instance of <tt class="literal"><span class="pre">indirect_iterator</span></tt> with
|
||
|
a default constructed base object.</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<p><tt class="literal"><span class="pre">indirect_iterator(Iterator</span> <span class="pre">x);</span></tt></p>
|
||
|
<table class="field-list" frame="void" rules="none">
|
||
|
<col class="field-name" />
|
||
|
<col class="field-body" />
|
||
|
<tbody valign="top">
|
||
|
<tr class="field"><th class="field-name">Returns:</th><td class="field-body">An instance of <tt class="literal"><span class="pre">indirect_iterator</span></tt> with
|
||
|
the <tt class="literal"><span class="pre">iterator_adaptor</span></tt> subobject copy constructed from <tt class="literal"><span class="pre">x</span></tt>.</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<pre class="literal-block">
|
||
|
template <
|
||
|
class Iterator2, class Value2, class Category2
|
||
|
, class Reference2, class Difference2
|
||
|
>
|
||
|
indirect_iterator(
|
||
|
indirect_iterator<
|
||
|
Iterator2, Value2, Category2, Reference2, Difference2
|
||
|
> const& y
|
||
|
, typename enable_if_convertible<Iterator2, Iterator>::type* = 0 // exposition
|
||
|
);
|
||
|
</pre>
|
||
|
<table class="field-list" frame="void" rules="none">
|
||
|
<col class="field-name" />
|
||
|
<col class="field-body" />
|
||
|
<tbody valign="top">
|
||
|
<tr class="field"><th class="field-name">Requires:</th><td class="field-body"><tt class="literal"><span class="pre">Iterator2</span></tt> is implicitly convertible to <tt class="literal"><span class="pre">Iterator</span></tt>.</td>
|
||
|
</tr>
|
||
|
<tr class="field"><th class="field-name">Returns:</th><td class="field-body">An instance of <tt class="literal"><span class="pre">indirect_iterator</span></tt> that is a copy of <tt class="literal"><span class="pre">y</span></tt>.</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|