forked from boostorg/iterator
		
	
		
			
				
	
	
		
			144 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			144 lines
		
	
	
		
			7.0 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.1: http://docutils.sourceforge.net/" />
 | 
						|
<title>Reverse 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-09-14" />
 | 
						|
<meta name="copyright" content="Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003. All rights reserved" />
 | 
						|
<link rel="stylesheet" href="../../../rst.css" type="text/css" />
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<div class="document" id="reverse-iterator">
 | 
						|
<h1 class="title">Reverse 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-09-14</td></tr>
 | 
						|
<tr><th class="docinfo-name">Copyright:</th>
 | 
						|
<td>Copyright David 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>
 | 
						|
<!-- I think we'd better strike the old reverse_iterator text from the standard, eh? -->
 | 
						|
<p>The reverse iterator adaptor flips the direction of a base iterator's
 | 
						|
motion. Invoking <tt class="literal"><span class="pre">operator++()</span></tt> moves the base iterator backward and
 | 
						|
invoking <tt class="literal"><span class="pre">operator--()</span></tt> moves the base iterator forward.</p>
 | 
						|
<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="#reverse-iterator-requirements" id="id1" name="id1"><tt class="literal"><span class="pre">reverse_iterator</span></tt> requirements</a></li>
 | 
						|
</ul>
 | 
						|
</div>
 | 
						|
<pre class="literal-block">
 | 
						|
template <class Iterator>
 | 
						|
class reverse_iterator :
 | 
						|
  public iterator_adaptor< reverse_iterator<Iterator>, Iterator >
 | 
						|
{
 | 
						|
  friend class iterator_core_access;
 | 
						|
public:
 | 
						|
  reverse_iterator() {}
 | 
						|
  explicit reverse_iterator(Iterator x) ;
 | 
						|
 | 
						|
  template<class OtherIterator>
 | 
						|
  reverse_iterator(
 | 
						|
      reverse_iterator<OtherIterator> const& r
 | 
						|
    , typename enable_if_convertible<OtherIterator, Iterator>::type* = 0 // exposition
 | 
						|
  );
 | 
						|
 | 
						|
private: // as-if specification
 | 
						|
  typename reverse_iterator::reference dereference() const { return *prior(this->base()); }
 | 
						|
 | 
						|
  void increment() { --this->base_reference(); }
 | 
						|
  void decrement() { ++this->base_reference(); }
 | 
						|
 | 
						|
  void advance(typename reverse_iterator::difference_type n)
 | 
						|
  {
 | 
						|
      this->base_reference() += -n;
 | 
						|
  }
 | 
						|
 | 
						|
  template <class OtherIterator>
 | 
						|
  typename reverse_iterator::difference_type
 | 
						|
  distance_to(reverse_iterator<OtherIterator> const& y) const
 | 
						|
  {
 | 
						|
      return this->base_reference() - y.base();
 | 
						|
  }
 | 
						|
 | 
						|
};
 | 
						|
</pre>
 | 
						|
<div class="section" id="reverse-iterator-requirements">
 | 
						|
<h1><a class="toc-backref" href="#id1" name="reverse-iterator-requirements"><tt class="literal"><span class="pre">reverse_iterator</span></tt> requirements</a></h1>
 | 
						|
<p>The base <tt class="literal"><span class="pre">Iterator</span></tt> must be a model of Bidirectional Traversal
 | 
						|
Iterator. The resulting <tt class="literal"><span class="pre">reverse_iterator</span></tt> will be a model of the
 | 
						|
most refined standard traversal and access concepts that are modeled
 | 
						|
by <tt class="literal"><span class="pre">Iterator</span></tt>.</p>
 | 
						|
<p><tt class="literal"><span class="pre">reverse_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">reverse_iterator</span></tt> with a
 | 
						|
default constructed base object.</td>
 | 
						|
</tr>
 | 
						|
</tbody>
 | 
						|
</table>
 | 
						|
<p><tt class="literal"><span class="pre">explicit</span> <span class="pre">reverse_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">reverse_iterator</span></tt> with a
 | 
						|
base object copy constructed from <tt class="literal"><span class="pre">x</span></tt>.</td>
 | 
						|
</tr>
 | 
						|
</tbody>
 | 
						|
</table>
 | 
						|
<pre class="literal-block">
 | 
						|
template<class OtherIterator>
 | 
						|
reverse_iterator(
 | 
						|
    reverse_iterator<OtherIterator> const& r
 | 
						|
  , typename enable_if_convertible<OtherIterator, 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">OtherIterator</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">reverse_iterator</span></tt> that is a copy of <tt class="literal"><span class="pre">r</span></tt>.</td>
 | 
						|
</tr>
 | 
						|
</tbody>
 | 
						|
</table>
 | 
						|
</div>
 | 
						|
</div>
 | 
						|
<hr class="footer" />
 | 
						|
<div class="footer">
 | 
						|
<a class="reference" href="reverse_iterator.rst">View document source</a>.
 | 
						|
Generated on: 2003-09-21 09:35 UTC.
 | 
						|
Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
 | 
						|
</div>
 | 
						|
</body>
 | 
						|
</html>
 |