associative iterators & views (Fixes #3473)

[SVN r57242]
This commit is contained in:
Christopher Schmidt
2009-10-30 00:19:19 +00:00
parent 9b26b4a0f7
commit dab67207cf
242 changed files with 3182 additions and 1556 deletions

View File

@@ -27,7 +27,7 @@
<a name="fusion.view.joint_view"></a><a class="link" href="joint_view.html" title="joint_view">joint_view</a>
</h3></div></div></div>
<a name="fusion.view.joint_view.description"></a><h5>
<a name="id772588"></a>
<a name="id734639"></a>
<a class="link" href="joint_view.html#fusion.view.joint_view.description">Description</a>
</h5>
<p>
@@ -35,21 +35,21 @@
which is a concatenation of two sequences.
</p>
<a name="fusion.view.joint_view.header"></a><h5>
<a name="id772612"></a>
<a name="id734663"></a>
<a class="link" href="joint_view.html#fusion.view.joint_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">joint_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">joint_view</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
</pre>
<a name="fusion.view.joint_view.synopsis"></a><h5>
<a name="id772720"></a>
<a name="id738415"></a>
<a class="link" href="joint_view.html#fusion.view.joint_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">Sequence1</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">Sequence2</span><span class="special">&gt;</span>
<span class="keyword">struct</span> <span class="identifier">joint_view</span><span class="special">;</span>
</pre>
<a name="fusion.view.joint_view.template_parameters"></a><h5>
<a name="id772785"></a>
<a name="id738480"></a>
<a class="link" href="joint_view.html#fusion.view.joint_view.template_parameters">Template parameters</a>
</h5>
<div class="informaltable"><table class="table">
@@ -113,10 +113,19 @@
</tbody>
</table></div>
<a name="fusion.view.joint_view.model_of"></a><h5>
<a name="id774546"></a>
<a name="id738603"></a>
<a class="link" href="joint_view.html#fusion.view.joint_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></li></ul></div>
<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></li>
<li class="listitem">
<a class="link" href="../sequence/concepts/associative_sequence.html" title="Associative Sequence">Associative
Sequence</a> if <code class="computeroutput"><span class="identifier">Sequence1</span></code>
and <code class="computeroutput"><span class="identifier">Sequence2</span></code> implement
the <a class="link" href="../sequence/concepts/associative_sequence.html" title="Associative Sequence">Associative
Sequence</a> model.
</li>
</ul></div>
<div class="variablelist" title="Notation">
<p class="title"><b>Notation</b></p>
<dl>
@@ -140,13 +149,12 @@
</dl>
</div>
<a name="fusion.view.joint_view.expression_semantics"></a><h5>
<a name="id774686"></a>
<a name="id738771"></a>
<a class="link" href="joint_view.html#fusion.view.joint_view.expression_semantics">Expression Semantics</a>
</h5>
<p>
Semantics of an expression is defined only where it differs from, or is not
defined in <a class="link" href="../sequence/concepts/forward_sequence.html" title="Forward Sequence">Forward
Sequence</a>.
defined in the implemented models.
</p>
<div class="informaltable"><table class="table">
<colgroup>
@@ -212,7 +220,7 @@
</tbody>
</table></div>
<a name="fusion.view.joint_view.example"></a><h5>
<a name="id774925"></a>
<a name="id739005"></a>
<a class="link" href="joint_view.html#fusion.view.joint_view.example">Example</a>
</h5>
<pre class="programlisting"><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">char</span><span class="special">&gt;</span> <span class="identifier">v1</span><span class="special">(</span><span class="number">3</span><span class="special">,</span> <span class="char">'x'</span><span class="special">);</span>