Imported Upstream version 1.57.0
[platform/upstream/boost.git] / doc / html / lambda / s08.html
index 880a3d6..52313d5 100644 (file)
@@ -3,9 +3,9 @@
 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
 <title>Relation to other Boost libraries</title>
 <link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css">
-<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
 <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
-<link rel="up" href="../lambda.html" title="Chapter&#160;14.&#160;Boost.Lambda">
+<link rel="up" href="../lambda.html" title="Chapter&#160;16.&#160;Boost.Lambda">
 <link rel="prev" href="s07.html" title="Practical considerations">
 <link rel="next" href="s09.html" title="Contributors">
 </head>
 </div>
 <div class="section">
 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<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#id2420509">Boost Function</a></span></dt>
-<dt><span class="section"><a href="s08.html#id2420601">Boost Bind</a></span></dt>
+<a name="idp320990880"></a>Relation to other Boost libraries</h2></div></div></div>
+<div class="toc"><dl class="toc">
+<dt><span class="section"><a href="s08.html#idp320991568">Boost Function</a></span></dt>
+<dt><span class="section"><a href="s08.html#idp321000320">Boost Bind</a></span></dt>
 </dl></div>
 <div class="section">
 <div class="titlepage"><div><div><h3 class="title">
-<a name="id2420509"></a>Boost Function</h3></div></div></div>
+<a name="idp320991568"></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="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>
+<a name="idp321000320"></a>Boost Bind</h3></div></div></div>
+<div class="toc"><dl class="toc"><dt><span class="section"><a href="s08.html#idp321005952">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="id2420653"></a>First argument of bind expression</h4></div></div></div>
+<a name="idp321005952"></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,