1 | <html> |
---|
2 | <head> |
---|
3 | <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
---|
4 | <title>Struct is_iequal</title> |
---|
5 | <link rel="stylesheet" href="boostbook.css" type="text/css"> |
---|
6 | <meta name="generator" content="DocBook XSL Stylesheets V1.69.1"> |
---|
7 | <link rel="start" href="index.html" title="The Boost C++ Libraries"> |
---|
8 | <link rel="up" href="string_algo/reference.html#id2558715" title="Header <boost/algorithm/string/compare.hpp>"> |
---|
9 | <link rel="prev" href="is_equal.html" title="Struct is_equal"> |
---|
10 | <link rel="next" href="FinderConcept.html" title="Struct template FinderConcept"> |
---|
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.png (6897 bytes)" 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="is_equal.html"><img src="images/prev.png" alt="Prev"></a><a accesskey="u" href="string_algo/reference.html#id2558715"><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="FinderConcept.html"><img src="images/next.png" alt="Next"></a> |
---|
24 | </div> |
---|
25 | <div class="refentry" lang="en"> |
---|
26 | <a name="is_iequal"></a><div class="titlepage"></div> |
---|
27 | <div class="refnamediv"> |
---|
28 | <h2><span class="refentrytitle">Struct is_iequal</span></h2> |
---|
29 | <p>boost::algorithm::is_iequal — case insensitive version of is_equal </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>struct</strong></span> is_iequal { |
---|
34 | <span class="emphasis"><em>// <a href="is_iequal.html#is_iequalconstruct-copy-destruct">construct/copy/destruct</a></em></span> |
---|
35 | <a href="is_iequal.html#id2573581-bb">is_iequal</a>(<span class="bold"><strong>const</strong></span> std::locale & = std::locale()); |
---|
36 | |
---|
37 | <span class="emphasis"><em>// <a href="is_iequal.html#id2352595-bb">public member functions</a></em></span> |
---|
38 | <span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T1, <span class="bold"><strong>typename</strong></span> T2> |
---|
39 | <span class="type"><span class="bold"><strong>bool</strong></span></span> <a href="is_iequal.html#id2352599-bb"><span class="bold"><strong>operator</strong></span>()</a>(<span class="bold"><strong>const</strong></span> T1 &, <span class="bold"><strong>const</strong></span> T2 &) <span class="bold"><strong>const</strong></span>; |
---|
40 | };</pre></div> |
---|
41 | <div class="refsect1" lang="en"> |
---|
42 | <a name="id2749376"></a><h2>Description</h2> |
---|
43 | <p>Case insensitive comparison predicate. Comparison is done using specified locales. </p> |
---|
44 | <div class="refsect2" lang="en"> |
---|
45 | <a name="id2749383"></a><h3> |
---|
46 | <a name="is_iequalconstruct-copy-destruct"></a><code class="computeroutput">is_iequal</code> construct/copy/destruct</h3> |
---|
47 | <div class="orderedlist"><ol type="1"><li> |
---|
48 | <pre class="literallayout"><a name="id2573581-bb"></a>is_iequal(<span class="bold"><strong>const</strong></span> std::locale & Loc = std::locale());</pre> |
---|
49 | <p></p> |
---|
50 | <div class="variablelist"> |
---|
51 | <p class="title"><b>Parameters</b></p> |
---|
52 | <dl> |
---|
53 | <dt><span class="term">Loc</span></dt> |
---|
54 | <dd><p>locales used for comparison </p></dd> |
---|
55 | </dl> |
---|
56 | </div> |
---|
57 | </li></ol></div> |
---|
58 | </div> |
---|
59 | <div class="refsect2" lang="en"> |
---|
60 | <a name="id2749437"></a><h3> |
---|
61 | <a name="id2352595-bb"></a><code class="computeroutput">is_iequal</code> public member functions</h3> |
---|
62 | <div class="orderedlist"><ol type="1"><li> |
---|
63 | <pre class="literallayout"><span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> T1, <span class="bold"><strong>typename</strong></span> T2> |
---|
64 | <span class="type"><span class="bold"><strong>bool</strong></span></span> <a name="id2352599-bb"></a><span class="bold"><strong>operator</strong></span>()(<span class="bold"><strong>const</strong></span> T1 & Arg1, <span class="bold"><strong>const</strong></span> T2 & Arg2) <span class="bold"><strong>const</strong></span>;</pre> |
---|
65 | <p>Compare two operands. Case is ignored. </p> |
---|
66 | </li></ol></div> |
---|
67 | </div> |
---|
68 | </div> |
---|
69 | </div> |
---|
70 | <table width="100%"><tr> |
---|
71 | <td align="left"></td> |
---|
72 | <td align="right"><small>Copyright © 2002-2004 Pavol Droba</small></td> |
---|
73 | </tr></table> |
---|
74 | <hr> |
---|
75 | <div class="spirit-nav"> |
---|
76 | <a accesskey="p" href="is_equal.html"><img src="images/prev.png" alt="Prev"></a><a accesskey="u" href="string_algo/reference.html#id2558715"><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="FinderConcept.html"><img src="images/next.png" alt="Next"></a> |
---|
77 | </div> |
---|
78 | </body> |
---|
79 | </html> |
---|