2006-08-22 15:57:13 +00:00
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
|
|
|
<title>Comparison</title>
|
|
|
|
|
<link rel="stylesheet" href="../../../boostbook.css" type="text/css">
|
2007-02-15 23:11:24 +00:00
|
|
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.68.1">
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<link rel="start" href="../../../index.html" title="Chapter<65>1.<2E>Fusion 2.0">
|
|
|
|
|
<link rel="up" href="../operators.html" title="Operators">
|
|
|
|
|
<link rel="prev" href="i_o/out.html" title="out">
|
|
|
|
|
<link rel="next" href="comparison/equal.html" title="equal">
|
|
|
|
|
</head>
|
|
|
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
|
|
|
<table cellpadding="2" width="100%">
|
|
|
|
|
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../index.htm">Home</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../libraries.htm">Libraries</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../people/people.htm">People</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../more/faq.htm">FAQ</a></td>
|
|
|
|
|
<td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
|
|
|
|
|
</table>
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="spirit-nav">
|
|
|
|
|
<a accesskey="p" href="i_o/out.html"><img src="../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../operators.html"><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="comparison/equal.html"><img src="../../../images/next.png" alt="Next"></a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="section" lang="en">
|
|
|
|
|
<div class="titlepage"><div><div><h4 class="title">
|
|
|
|
|
<a name="fusion.sequences.operators.comparison"></a><a href="comparison.html" title="Comparison">Comparison</a></h4></div></div></div>
|
2007-01-27 13:05:23 +00:00
|
|
|
|
<div class="toc"><dl>
|
|
|
|
|
<dt><span class="section"><a href="comparison/equal.html">equal</a></span></dt>
|
|
|
|
|
<dt><span class="section"><a href="comparison/not_equal.html">not
|
|
|
|
|
equal</a></span></dt>
|
|
|
|
|
<dt><span class="section"><a href="comparison/less_than.html">less
|
|
|
|
|
than</a></span></dt>
|
|
|
|
|
<dt><span class="section"><a href="comparison/less_than_equal.html">less
|
|
|
|
|
than equal</a></span></dt>
|
|
|
|
|
<dt><span class="section"><a href="comparison/greater_than.html">greater
|
|
|
|
|
than</a></span></dt>
|
|
|
|
|
<dt><span class="section"><a href="comparison/greater_than_equal.html">greater
|
|
|
|
|
than equal</a></span></dt>
|
|
|
|
|
</dl></div>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<p>
|
2007-02-15 23:11:24 +00:00
|
|
|
|
The Comparison operators: <code class="computeroutput"><span class="special">==</span></code>,
|
|
|
|
|
<code class="computeroutput"><span class="special">!=</span></code>, <code class="computeroutput"><span class="special"><</span></code>,
|
|
|
|
|
<code class="computeroutput"><span class="special"><=</span></code>, <code class="computeroutput"><span class="special">>=</span></code>
|
|
|
|
|
and <code class="computeroutput"><span class="special">>=</span></code> work generically
|
2006-08-22 15:57:13 +00:00
|
|
|
|
on all Fusion sequences. Comparison operators are "short- circuited":
|
|
|
|
|
elementary comparisons start from the first elements and are performed
|
|
|
|
|
only until the result is clear.
|
|
|
|
|
</p>
|
|
|
|
|
<a name="fusion.sequences.operators.comparison.header"></a><h5>
|
2007-02-15 23:11:24 +00:00
|
|
|
|
<a name="id1075463"></a>
|
2006-08-22 15:57:13 +00:00
|
|
|
|
<a href="comparison.html#fusion.sequences.operators.comparison.header">Header</a>
|
|
|
|
|
</h5>
|
|
|
|
|
<pre class="programlisting">
|
|
|
|
|
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">sequence</span><span class="special">/</span><span class="identifier">comparison</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
|
|
|
|
|
</pre>
|
|
|
|
|
</div>
|
|
|
|
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|
|
|
|
<td align="left"></td>
|
|
|
|
|
<td align="right"><small>Copyright <20> 2001-2005 Joel de Guzman, Dan Marsden</small></td>
|
|
|
|
|
</tr></table>
|
|
|
|
|
<hr>
|
|
|
|
|
<div class="spirit-nav">
|
|
|
|
|
<a accesskey="p" href="i_o/out.html"><img src="../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../operators.html"><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="comparison/equal.html"><img src="../../../images/next.png" alt="Next"></a>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|