added reverse_fold/iter_fold/reverse_iter_fold (2) (fixes #1623)

[SVN r63083]
This commit is contained in:
Christopher Schmidt
2010-06-18 17:23:20 +00:00
parent ea89db72cb
commit 758178a2a8
272 changed files with 2233 additions and 2089 deletions

View File

@ -3,7 +3,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>set</title>
<link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.0-pre">
<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="../container.html" title="Container">
<link rel="prev" href="list.html" title="list">
@ -27,7 +27,7 @@
<a name="fusion.container.set"></a><a class="link" href="set.html" title="set">set</a>
</h3></div></div></div>
<a name="fusion.container.set.description"></a><h5>
<a name="id832638"></a>
<a name="id939652"></a>
<a class="link" href="set.html#fusion.container.set.description">Description</a>
</h5>
<p>
@ -39,7 +39,7 @@
Functions</a>).
</p>
<a name="fusion.container.set.header"></a><h5>
<a name="id832686"></a>
<a name="id939678"></a>
<a class="link" href="set.html#fusion.container.set.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">container</span><span class="special">/</span><span class="identifier">set</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
@ -48,7 +48,7 @@
<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">set_fwd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
</pre>
<a name="fusion.container.set.synopsis"></a><h5>
<a name="id832976"></a>
<a name="id939884"></a>
<a class="link" href="set.html#fusion.container.set.synopsis">Synopsis</a>
</h5>
<pre class="programlisting"><span class="keyword">template</span> <span class="special">&lt;</span>
@ -76,7 +76,7 @@
<pre class="programlisting"><span class="preprocessor">#define</span> <span class="identifier">FUSION_MAX_SET_SIZE</span> <span class="number">20</span>
</pre>
<a name="fusion.container.set.template_parameters"></a><h5>
<a name="id833303"></a>
<a name="id940117"></a>
<a class="link" href="set.html#fusion.container.set.template_parameters">Template parameters</a>
</h5>
<div class="informaltable"><table class="table">
@ -121,7 +121,7 @@
</tr></tbody>
</table></div>
<a name="fusion.container.set.model_of"></a><h5>
<a name="id833426"></a>
<a name="id940216"></a>
<a class="link" href="set.html#fusion.container.set.model_of">Model of</a>
</h5>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
@ -156,7 +156,7 @@
</dl>
</div>
<a name="fusion.container.set.expression_semantics"></a><h5>
<a name="id833632"></a>
<a name="id940367"></a>
<a class="link" href="set.html#fusion.container.set.expression_semantics">Expression Semantics</a>
</h5>
<p>
@ -240,7 +240,7 @@
</tbody>
</table></div>
<a name="fusion.container.set.example"></a><h5>
<a name="id833986"></a>
<a name="id940626"></a>
<a class="link" href="set.html#fusion.container.set.example">Example</a>
</h5>
<pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">set</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">,</span> <span class="keyword">float</span><span class="special">&gt;</span> <span class="identifier">S</span><span class="special">;</span>