summaryrefslogtreecommitdiff
path: root/doc/html/lambda/s08.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/lambda/s08.html')
-rw-r--r--[-rwxr-xr-x]doc/html/lambda/s08.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/lambda/s08.html b/doc/html/lambda/s08.html
index 40f0a682f6..880a3d691e 100755..100644
--- a/doc/html/lambda/s08.html
+++ b/doc/html/lambda/s08.html
@@ -24,14 +24,14 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="id2380753"></a>Relation to other Boost libraries</h2></div></div></div>
+<a name="id2420502"></a>Relation to other Boost libraries</h2></div></div></div>
<div class="toc"><dl>
-<dt><span class="section"><a href="s08.html#id2380760">Boost Function</a></span></dt>
-<dt><span class="section"><a href="s08.html#id2380852">Boost Bind</a></span></dt>
+<dt><span class="section"><a href="s08.html#id2420509">Boost Function</a></span></dt>
+<dt><span class="section"><a href="s08.html#id2420601">Boost Bind</a></span></dt>
</dl></div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id2380760"></a>Boost Function</h3></div></div></div>
+<a name="id2420509"></a>Boost Function</h3></div></div></div>
<p>Sometimes it is convenient to store lambda functors in variables.
However, the types of even the simplest lambda functors are long and unwieldy, and it is in general unfeasible to declare variables with lambda functor types.
<span class="emphasis"><em>The Boost Function library</em></span> <a class="xref" href="../lambda.html#cit:boost::function" title="Boost Function Library">[<abbr class="abbrev">function</abbr>]</a> defines wrappers for arbitrary function objects, for example
@@ -79,8 +79,8 @@ counter(3); // error, *sum does not exist anymore
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id2380852"></a>Boost Bind</h3></div></div></div>
-<div class="toc"><dl><dt><span class="section"><a href="s08.html#id2380904">First argument of bind expression</a></span></dt></dl></div>
+<a name="id2420601"></a>Boost Bind</h3></div></div></div>
+<div class="toc"><dl><dt><span class="section"><a href="s08.html#id2420653">First argument of bind expression</a></span></dt></dl></div>
<p>
<span class="emphasis"><em>The Boost Bind</em></span> <a class="xref" href="../lambda.html#cit:boost::bind" title="Boost Bind Library">[<abbr class="abbrev">bind</abbr>]</a> library has partially overlapping functionality with the BLL.
Basically, the Boost Bind library (BB in the sequel) implements the bind expression part of BLL.
@@ -106,7 +106,7 @@ between the bind expressions in BB and BLL.
</p>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
-<a name="id2380904"></a>First argument of bind expression</h4></div></div></div>
+<a name="id2420653"></a>First argument of bind expression</h4></div></div></div>
In BB the first argument of the bind expression, the target function,
is treated differently from the other arguments,