merge from trunk

[SVN r61189]
This commit is contained in:
Christopher Schmidt
2010-04-11 00:31:21 +00:00
parent 994b37e4d5
commit dc8225a7aa
276 changed files with 9730 additions and 8922 deletions

View File

@ -3,7 +3,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>next</title>
<link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.0">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.1">
<link rel="home" href="../../../index.html" title="Chapter&#160;1.&#160;Fusion 2.0">
<link rel="up" href="../functions.html" title="Functions">
<link rel="prev" href="deref.html" title="deref">
@ -27,14 +27,14 @@
<a name="fusion.iterator.functions.next"></a><a class="link" href="next.html" title="next">next</a>
</h4></div></div></div>
<a name="fusion.iterator.functions.next.description"></a><h6>
<a name="id579198"></a>
<a name="id678198"></a>
<a class="link" href="next.html#fusion.iterator.functions.next.description">Description</a>
</h6>
<p>
Moves an iterator 1 position forwards.
</p>
<a name="fusion.iterator.functions.next.synopsis"></a><h6>
<a name="id579216"></a>
<a name="id678216"></a>
<a class="link" href="next.html#fusion.iterator.functions.next.synopsis">Synopsis</a>
</h6>
<pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span>
@ -43,7 +43,7 @@
<span class="keyword">typename</span> <a class="link" href="../metafunctions/next.html" title="next"><code class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">next</span></code></a><span class="special">&lt;</span><span class="identifier">I</span><span class="special">&gt;::</span><span class="identifier">type</span> <span class="identifier">next</span><span class="special">(</span><span class="identifier">I</span> <span class="keyword">const</span><span class="special">&amp;</span> <span class="identifier">i</span><span class="special">);</span>
</pre>
<div class="table">
<a name="id579317"></a><p class="title"><b>Table&#160;1.3.&#160;Parameters</b></p>
<a name="id678316"></a><p class="title"><b>Table&#160;1.3.&#160;Parameters</b></p>
<div class="table-contents"><table class="table" summary="Parameters">
<colgroup>
<col>
@ -52,43 +52,43 @@
</colgroup>
<thead><tr>
<th>
<p>
Parameter
</p>
</th>
<p>
Parameter
</p>
</th>
<th>
<p>
Requirement
</p>
</th>
<p>
Requirement
</p>
</th>
<th>
<p>
Description
</p>
</th>
<p>
Description
</p>
</th>
</tr></thead>
<tbody><tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">i</span></code>
</p>
</td>
<p>
<code class="computeroutput"><span class="identifier">i</span></code>
</p>
</td>
<td>
<p>
Model of <a class="link" href="../concepts/forward_iterator.html" title="Forward Iterator">Forward
Iterator</a>
</p>
</td>
<p>
Model of <a class="link" href="../concepts/forward_iterator.html" title="Forward Iterator">Forward
Iterator</a>
</p>
</td>
<td>
<p>
Operation's argument
</p>
</td>
<p>
Operation's argument
</p>
</td>
</tr></tbody>
</table></div>
</div>
<br class="table-break"><a name="fusion.iterator.functions.next.expression_semantics"></a><h6>
<a name="id579399"></a>
<a name="id678404"></a>
<a class="link" href="next.html#fusion.iterator.functions.next.expression_semantics">Expression
Semantics</a>
</h6>
@ -103,14 +103,14 @@
next element after <code class="computeroutput"><span class="identifier">i</span></code>.
</p>
<a name="fusion.iterator.functions.next.header"></a><h6>
<a name="id579464"></a>
<a name="id678469"></a>
<a class="link" href="next.html#fusion.iterator.functions.next.header">Header</a>
</h6>
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">iterator</span><span class="special">/</span><span class="identifier">next</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
<span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">include</span><span class="special">/</span><span class="identifier">next</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
</pre>
<a name="fusion.iterator.functions.next.example"></a><h6>
<a name="id579572"></a>
<a name="id678577"></a>
<a class="link" href="next.html#fusion.iterator.functions.next.example">Example</a>
</h6>
<pre class="programlisting"><span class="keyword">typedef</span> <a class="link" href="../../container/vector.html" title="vector"><code class="computeroutput"><span class="identifier">vector</span></code></a><span class="special">&lt;</span><span class="keyword">int</span><span class="special">,</span><span class="keyword">int</span><span class="special">,</span><span class="keyword">int</span><span class="special">&gt;</span> <span class="identifier">vec</span><span class="special">;</span>