summaryrefslogtreecommitdiff
path: root/doc/html/lambda/s03.html
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2016-10-06 10:41:18 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2016-10-06 10:43:11 +0900
commitf763a99a501650eff2c60288aa6f10ef916d769e (patch)
tree02af7e13f9a38c888ebf340fe764cbe7dae99da9 /doc/html/lambda/s03.html
parent5cde13f21d36c7224b0e13d11c4b49379ae5210d (diff)
downloadboost-f763a99a501650eff2c60288aa6f10ef916d769e.tar.gz
boost-f763a99a501650eff2c60288aa6f10ef916d769e.tar.bz2
boost-f763a99a501650eff2c60288aa6f10ef916d769e.zip
Imported Upstream version 1.62.0upstream/1.62.0
Change-Id: I9d4c1ddb7b7d8f0069217ecc582700f9fda6dd4c Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'doc/html/lambda/s03.html')
-rw-r--r--doc/html/lambda/s03.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/lambda/s03.html b/doc/html/lambda/s03.html
index 491fc73f3a..74eac55167 100644
--- a/doc/html/lambda/s03.html
+++ b/doc/html/lambda/s03.html
@@ -4,9 +4,9 @@
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Introduction</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.79.1">
<link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
-<link rel="up" href="../lambda.html" title="Chapter&#160;17.&#160;Boost.Lambda">
+<link rel="up" href="../lambda.html" title="Chapter&#160;18.&#160;Boost.Lambda">
<link rel="prev" href="getting_started.html" title="Getting Started">
<link rel="next" href="using_library.html" title="Using the library">
</head>
@@ -25,14 +25,14 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="idp247197216"></a>Introduction</h2></div></div></div>
-<div class="toc"><dl>
-<dt><span class="section"><a href="s03.html#idp247197888">Motivation</a></span></dt>
-<dt><span class="section"><a href="s03.html#idp247226832">Introduction to lambda expressions</a></span></dt>
+<a name="idm45927935757440"></a>Introduction</h2></div></div></div>
+<div class="toc"><dl class="toc">
+<dt><span class="section"><a href="s03.html#idm45927935756768">Motivation</a></span></dt>
+<dt><span class="section"><a href="s03.html#idm45927935727824">Introduction to lambda expressions</a></span></dt>
</dl></div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="idp247197888"></a>Motivation</h3></div></div></div>
+<a name="idm45927935756768"></a>Motivation</h3></div></div></div>
<p>The Standard Template Library (STL)
<a class="xref" href="../lambda.html#cit:stepanov:94" title="The Standard Template Library">[<abbr class="abbrev">STL94</abbr>]</a>, now part of the C++ Standard Library <a class="xref" href="../lambda.html#cit:c++:98" title="International Standard, Programming Languages &#8211; C++">[<abbr class="abbrev">C++98</abbr>]</a>, is a generic container and algorithm library.
Typically STL algorithms operate on container elements via <span class="emphasis"><em>function objects</em></span>. These function objects are passed as arguments to the algorithms.
@@ -123,7 +123,7 @@ of a binary function to be bound; there are no binders for
The Boost Lambda Library provides solutions for the problems described above:
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<p>
Unnamed functions can be created easily with an intuitive syntax.
@@ -162,8 +162,8 @@ as function composition is supported implicitly.
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="idp247226832"></a>Introduction to lambda expressions</h3></div></div></div>
-<div class="toc"><dl>
+<a name="idm45927935727824"></a>Introduction to lambda expressions</h3></div></div></div>
+<div class="toc"><dl class="toc">
<dt><span class="section"><a href="s03.html#lambda.partial_function_application">Partial function application</a></span></dt>
<dt><span class="section"><a href="s03.html#lambda.terminology">Terminology</a></span></dt>
</dl></div>
@@ -181,7 +181,7 @@ lambda x<sub>1</sub> ... x<sub>n</sub>.e
A lambda expression defines an unnamed function and consists of:
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p>
the parameters of this function: <code class="literal">x<sub>1</sub> ... x<sub>n</sub></code>.