Fix headers for set_fwd and map_fwd. Fixes #3237

[SVN r62891]
This commit is contained in:
Steven Watanabe
2010-06-13 01:45:12 +00:00
parent 9b7b9db979
commit 378858f270
269 changed files with 2768 additions and 2562 deletions

View File

@ -3,7 +3,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>zip_view</title>
<link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.1">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.0-pre">
<link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Fusion 2.0">
<link rel="up" href="../view.html" title="View">
<link rel="prev" href="joint_view.html" title="joint_view">
@ -27,7 +27,7 @@
<a name="fusion.view.zip_view"></a><a class="link" href="zip_view.html" title="zip_view">zip_view</a>
</h3></div></div></div>
<a name="fusion.view.zip_view.description"></a><h5>
<a name="id986734"></a>
<a name="id871168"></a>
<a class="link" href="zip_view.html#fusion.view.zip_view.description">Description</a>
</h5>
<p>
@ -38,21 +38,21 @@
to the component <span class="underline">_sequence</span>_s.
</p>
<a name="fusion.view.zip_view.header"></a><h5>
<a name="id986780"></a>
<a name="id871245"></a>
<a class="link" href="zip_view.html#fusion.view.zip_view.header">Header</a>
</h5>
<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">view</span><span class="special">/</span><span class="identifier">zip_view</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">zip_view</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
</pre>
<a name="fusion.view.zip_view.synopsis"></a><h5>
<a name="id986888"></a>
<a name="id871400"></a>
<a class="link" href="zip_view.html#fusion.view.zip_view.synopsis">Synopsis</a>
</h5>
<pre class="programlisting"><span class="keyword">template</span> <span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Sequences</span><span class="special">&gt;</span>
<span class="keyword">struct</span> <span class="identifier">zip_view</span><span class="special">;</span>
</pre>
<a name="fusion.view.zip_view.template_parameters"></a><h5>
<a name="id986940"></a>
<a name="id871477"></a>
<a class="link" href="zip_view.html#fusion.view.zip_view.template_parameters">Template parameters</a>
</h5>
<div class="informaltable"><table class="table">
@ -97,17 +97,17 @@
</tr></tbody>
</table></div>
<a name="fusion.view.zip_view.model_of"></a><h5>
<a name="id987037"></a>
<a name="id871601"></a>
<a class="link" href="zip_view.html#fusion.view.zip_view.model_of">Model of</a>
</h5>
<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
<a class="link" href="../sequence/concepts/forward_sequence.html" title="Forward Sequence">Forward Sequence</a>,
<a class="link" href="../sequence/concepts/bidirectional_sequence.html" title="Bidirectional Sequence">Bidirectional
Sequence</a> or <a class="link" href="../sequence/concepts/random_access_sequence.html" title="Random Access Sequence">Random
Access Sequence</a> depending on the traversal characteristics (see
<a class="link" href="../sequence/concepts.html#fusion.sequence.concepts.traversal">Sequence Traversal Concept</a>)
of its underlying sequence.
</li></ul></div>
<a class="link" href="../sequence/concepts/forward_sequence.html" title="Forward Sequence">Forward Sequence</a>,
<a class="link" href="../sequence/concepts/bidirectional_sequence.html" title="Bidirectional Sequence">Bidirectional
Sequence</a> or <a class="link" href="../sequence/concepts/random_access_sequence.html" title="Random Access Sequence">Random
Access Sequence</a> depending on the traversal characteristics (see
<a class="link" href="../sequence/concepts.html#fusion.sequence.concepts.traversal">Sequence Traversal
Concept</a>) of its underlying sequence.
</li></ul></div>
<div class="variablelist">
<p class="title"><b>Notation</b></p>
<dl>
@ -126,7 +126,7 @@
</dl>
</div>
<a name="fusion.view.zip_view.expression_semantics"></a><h5>
<a name="id987172"></a>
<a name="id871801"></a>
<a class="link" href="zip_view.html#fusion.view.zip_view.expression_semantics">Expression Semantics</a>
</h5>
<p>
@ -197,7 +197,7 @@
</tbody>
</table></div>
<a name="fusion.view.zip_view.example"></a><h5>
<a name="id987398"></a>
<a name="id872114"></a>
<a class="link" href="zip_view.html#fusion.view.zip_view.example">Example</a>
</h5>
<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">&gt;</span> <span class="identifier">vec1</span><span class="special">;</span>