]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/comparison/equal.hpp
update
[lyx.git] / boost / boost / preprocessor / comparison / equal.hpp
1 #ifndef BOOST_PREPROCESSOR_COMPARISON_EQUAL_HPP
2 #define BOOST_PREPROCESSOR_COMPARISON_EQUAL_HPP
3
4 /* Copyright (C) 2001
5  * Housemarque Oy
6  * http://www.housemarque.com
7  *
8  * Permission to copy, use, modify, sell and distribute this software is
9  * granted provided this copyright notice appears in all copies. This
10  * software is provided "as is" without express or implied warranty, and
11  * with no claim as to its suitability for any purpose.
12  *
13  * See http://www.boost.org for most recent version.
14  */
15
16 #include <boost/preprocessor/comparison/not_equal.hpp>
17 #include <boost/preprocessor/logical/not.hpp>
18
19 /** <p>Expands to <code>1</code> if <code>X == Y</code> and <code>0</code>
20 otherwise.</p>
21
22 <p>Both <code>X</code> and <code>Y</code> must expand to integer literals
23 in the range [0, BOOST_PP_LIMIT_MAG].</p>
24
25 <p>For example, <code>BOOST_PP_EQUAL(4,4)</code> expands to <code>1</code>.</p>
26
27 <h3>Test</h3>
28 <ul>
29   <li><a href="../../test/arithmetic_test.cpp">arithmetic_test.cpp</a></li>
30 </ul>
31 */
32 #define BOOST_PP_EQUAL(X,Y) BOOST_PP_EQUAL_D(0,X,Y)
33
34 /** <p>Can be used inside BOOST_PP_WHILE() (see for an explanation of the D parameter).</p> */
35 #define BOOST_PP_EQUAL_D(D,X,Y) BOOST_PP_NOT(BOOST_PP_NOT_EQUAL_D(D,X,Y))
36 #endif