diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-10-06 10:38:45 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2016-10-06 10:39:52 +0900 |
commit | 5cde13f21d36c7224b0e13d11c4b49379ae5210d (patch) | |
tree | e8269ac85a4b0f7d416e2565fa4f451b5cb41351 /doc/html/lambda/s03.html | |
parent | d9ec475d945d3035377a0d89ed42e382d8988891 (diff) | |
download | boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.tar.gz boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.tar.bz2 boost-5cde13f21d36c7224b0e13d11c4b49379ae5210d.zip |
Imported Upstream version 1.61.0
Change-Id: I96a1f878d1e6164f01e9aadd5147f38fca448d90
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'doc/html/lambda/s03.html')
-rw-r--r-- | doc/html/lambda/s03.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/lambda/s03.html b/doc/html/lambda/s03.html index b1c5bf2c3c..491fc73f3a 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.78.1"> +<meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> -<link rel="up" href="../lambda.html" title="Chapter 16. Boost.Lambda"> +<link rel="up" href="../lambda.html" title="Chapter 17. 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="idm45555242003648"></a>Introduction</h2></div></div></div> -<div class="toc"><dl class="toc"> -<dt><span class="section"><a href="s03.html#idm45555242002976">Motivation</a></span></dt> -<dt><span class="section"><a href="s03.html#idm45555241973408">Introduction to lambda expressions</a></span></dt> +<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> </dl></div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> -<a name="idm45555242002976"></a>Motivation</h3></div></div></div> +<a name="idp247197888"></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 – 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" style="list-style-type: disc; "> +<div class="itemizedlist"><ul class="itemizedlist" 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="idm45555241973408"></a>Introduction to lambda expressions</h3></div></div></div> -<div class="toc"><dl class="toc"> +<a name="idp247226832"></a>Introduction to lambda expressions</h3></div></div></div> +<div class="toc"><dl> <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" style="list-style-type: disc; "> +<div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"><p> the parameters of this function: <code class="literal">x<sub>1</sub> ... x<sub>n</sub></code>. |