summaryrefslogtreecommitdiff
path: root/doc/html/string_algo/concept.html
diff options
context:
space:
mode:
authorChanho Park <chanho61.park@samsung.com>2014-12-11 18:55:56 +0900
committerChanho Park <chanho61.park@samsung.com>2014-12-11 18:55:56 +0900
commit08c1e93fa36a49f49325a07fe91ff92c964c2b6c (patch)
tree7a7053ceb8874b28ec4b868d4c49b500008a102e /doc/html/string_algo/concept.html
parentbb4dd8289b351fae6b55e303f189127a394a1edd (diff)
downloadboost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.tar.gz
boost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.tar.bz2
boost-08c1e93fa36a49f49325a07fe91ff92c964c2b6c.zip
Imported Upstream version 1.57.0upstream/1.57.0
Diffstat (limited to 'doc/html/string_algo/concept.html')
-rw-r--r--doc/html/string_algo/concept.html28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/html/string_algo/concept.html b/doc/html/string_algo/concept.html
index b416e9b77e..07d3787fb7 100644
--- a/doc/html/string_algo/concept.html
+++ b/doc/html/string_algo/concept.html
@@ -3,9 +3,9 @@
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Concepts</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="../string_algo.html" title="Chapter&#160;27.&#160;Boost String Algorithms Library">
+<link rel="up" href="../string_algo.html" title="Chapter&#160;29.&#160;Boost String Algorithms Library">
<link rel="prev" href="design.html" title="Design Topics">
<link rel="next" href="reference.html" title="Reference">
</head>
@@ -25,16 +25,16 @@
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="string_algo.concept"></a>Concepts</h2></div></div></div>
-<div class="toc"><dl>
-<dt><span class="section"><a href="concept.html#id3243870">Definitions</a></span></dt>
+<div class="toc"><dl class="toc">
+<dt><span class="section"><a href="concept.html#idp431253392">Definitions</a></span></dt>
<dt><span class="section"><a href="concept.html#string_algo.finder_concept">Finder Concept</a></span></dt>
<dt><span class="section"><a href="concept.html#string_algo.formatter_concept">Formatter concept</a></span></dt>
</dl></div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id3243870"></a>Definitions</h3></div></div></div>
+<a name="idp431253392"></a>Definitions</h3></div></div></div>
<div class="table">
-<a name="id3243875"></a><p class="title"><b>Table&#160;27.13.&#160;Notation</b></p>
+<a name="idp431254032"></a><p class="title"><b>Table&#160;29.13.&#160;Notation</b></p>
<div class="table-contents"><table class="table" summary="Notation">
<colgroup>
<col>
@@ -84,7 +84,7 @@
delimiting the selected part.
</p>
<div class="table">
-<a name="id3244011"></a><p class="title"><b>Table&#160;27.14.&#160;Valid Expressions</b></p>
+<a name="idp431270048"></a><p class="title"><b>Table&#160;29.14.&#160;Valid Expressions</b></p>
<div class="table-contents"><table class="table" summary="Valid Expressions">
<colgroup>
<col>
@@ -118,7 +118,7 @@
</p>
<p>
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
Finder implemented as a class. This Finder always returns the whole input as a match. <code class="computeroutput">operator()</code>
is templated, so that the finder can be used on any iterator type.
@@ -166,7 +166,7 @@ boost::iterator_range&lt;std::string&gt; simple_finder(
<code class="computeroutput"><a class="link" href="../boost/algorithm/regex_finder.html" title="Function template regex_finder">regex_finder()</a></code> to format the result of formatter operation.
</p>
<div class="table">
-<a name="id3244189"></a><p class="title"><b>Table&#160;27.15.&#160;Valid Expressions</b></p>
+<a name="idp431289984"></a><p class="title"><b>Table&#160;29.15.&#160;Valid Expressions</b></p>
<div class="table-contents"><table class="table" summary="Valid Expressions">
<colgroup>
<col>
@@ -187,17 +187,17 @@ boost::iterator_range&lt;std::string&gt; simple_finder(
</div>
<br class="table-break"><p>
Similarly to finders, formatters generalize format operations. When a finder is used to
- select a part of the input, formatter takes this selection and performs some formating
- on it. Algorithms can abstract from formating using a formatter.
+ select a part of the input, formatter takes this selection and performs some formatting
+ on it. Algorithms can abstract from formatting using a formatter.
</p>
<p>
<span class="bold"><strong>Examples</strong></span>
</p>
<p>
</p>
-<div class="itemizedlist"><ul class="itemizedlist" type="disc">
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
- Formatter implemented as a class. This Formatter does not perform any formating and
+ Formatter implemented as a class. This Formatter does not perform any formatting and
returns the match, repackaged. <code class="computeroutput">operator()</code>
is templated, so that the Formatter can be used on any Finder type.
@@ -231,7 +231,7 @@ std::string simple_formatter( boost::iterator_range&lt;std::string::const_iterat
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: June 19, 2008 at 13:07:24 +0100</small></p></td>
+<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright &#169; 2002-2004 Pavol Droba<p>Use, modification and distribution is subject to the Boost
Software License, Version 1.0. (See accompanying file
<code class="filename">LICENSE_1_0.txt</code> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)