1 | <html> |
---|
2 | <head> |
---|
3 | <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
---|
4 | <title>Function template iequals</title> |
---|
5 | <link rel="stylesheet" href="../../boostbook.css" type="text/css"> |
---|
6 | <meta name="generator" content="DocBook XSL Stylesheets V1.68.1"> |
---|
7 | <link rel="start" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> |
---|
8 | <link rel="up" href="../../string_algo/reference.html#header.boost.algorithm.string.predicate.hpp" title="Header <boost/algorithm/string/predicate.hpp>"> |
---|
9 | <link rel="prev" href="equals.html" title="Function equals"> |
---|
10 | <link rel="next" href="lexicographical_compare.html" title="Function lexicographical_compare"> |
---|
11 | </head> |
---|
12 | <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> |
---|
13 | <table cellpadding="2" width="100%"> |
---|
14 | <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td> |
---|
15 | <td align="center"><a href="../../../../index.htm">Home</a></td> |
---|
16 | <td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td> |
---|
17 | <td align="center"><a href="../../../../people/people.htm">People</a></td> |
---|
18 | <td align="center"><a href="../../../../more/faq.htm">FAQ</a></td> |
---|
19 | <td align="center"><a href="../../../../more/index.htm">More</a></td> |
---|
20 | </table> |
---|
21 | <hr> |
---|
22 | <div class="spirit-nav"> |
---|
23 | <a accesskey="p" href="equals.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.predicate.hpp"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="lexicographical_compare.html"><img src="../../images/next.png" alt="Next"></a> |
---|
24 | </div> |
---|
25 | <div class="refentry" lang="en"> |
---|
26 | <a name="boost.algorithm.iequals"></a><div class="titlepage"></div> |
---|
27 | <div class="refnamediv"> |
---|
28 | <h2><span class="refentrytitle">Function template iequals</span></h2> |
---|
29 | <p>boost::algorithm::iequals — 'Equals' predicate ( case insensitive ) </p> |
---|
30 | </div> |
---|
31 | <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> |
---|
32 | <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"> |
---|
33 | <span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> Range1T, <span class="bold"><strong>typename</strong></span> Range2T> |
---|
34 | <span class="type"><span class="bold"><strong>bool</strong></span></span> iequals(<span class="bold"><strong>const</strong></span> Range1T & Input, <span class="bold"><strong>const</strong></span> Range2T & Test, |
---|
35 | <span class="bold"><strong>const</strong></span> std::locale & Loc = std::locale());</pre></div> |
---|
36 | <div class="refsect1" lang="en"> |
---|
37 | <a name="id1696089"></a><h2>Description</h2> |
---|
38 | <p>This predicate holds when the test container is equal to the input container i.e. all elements in both containers are same. Elements are compared case insensitively.</p> |
---|
39 | <p> |
---|
40 | |
---|
41 | |
---|
42 | </p> |
---|
43 | <div class="variablelist"><table border="0"> |
---|
44 | <col align="left" valign="top"> |
---|
45 | <tbody> |
---|
46 | <tr> |
---|
47 | <td> |
---|
48 | <span class="term">Parameters:</span></td> |
---|
49 | <td><div class="variablelist"><table border="0"> |
---|
50 | <col align="left" valign="top"> |
---|
51 | <tbody> |
---|
52 | <tr> |
---|
53 | <td> |
---|
54 | <span class="term"><code class="computeroutput">Input</code></span></td> |
---|
55 | <td><p>An input sequence </p></td> |
---|
56 | </tr> |
---|
57 | <tr> |
---|
58 | <td> |
---|
59 | <span class="term"><code class="computeroutput">Loc</code></span></td> |
---|
60 | <td><p>A locale used for case insensitive comparison </p></td> |
---|
61 | </tr> |
---|
62 | <tr> |
---|
63 | <td> |
---|
64 | <span class="term"><code class="computeroutput">Test</code></span></td> |
---|
65 | <td><p>A test sequence </p></td> |
---|
66 | </tr> |
---|
67 | </tbody> |
---|
68 | </table></div></td> |
---|
69 | </tr> |
---|
70 | <tr> |
---|
71 | <td> |
---|
72 | <span class="term">Returns:</span></td> |
---|
73 | <td><p>The result of the test</p></td> |
---|
74 | </tr> |
---|
75 | <tr> |
---|
76 | <td> |
---|
77 | <span class="term">Notes:</span></td> |
---|
78 | <td> |
---|
79 | <p>This is a two-way version of <code class="computeroutput">std::equal</code> algorithm</p> |
---|
80 | <p>This function provides the strong exception-safety guarantee </p> |
---|
81 | </td> |
---|
82 | </tr> |
---|
83 | </tbody> |
---|
84 | </table></div> |
---|
85 | </div> |
---|
86 | </div> |
---|
87 | <table width="100%"><tr> |
---|
88 | <td align="left"></td> |
---|
89 | <td align="right"><small>Copyright © 2002-2004 Pavol Droba</small></td> |
---|
90 | </tr></table> |
---|
91 | <hr> |
---|
92 | <div class="spirit-nav"> |
---|
93 | <a accesskey="p" href="equals.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.predicate.hpp"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="lexicographical_compare.html"><img src="../../images/next.png" alt="Next"></a> |
---|
94 | </div> |
---|
95 | </body> |
---|
96 | </html> |
---|