]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/arithmetic/sub.hpp
update
[lyx.git] / boost / boost / preprocessor / arithmetic / sub.hpp
1 #ifndef BOOST_PREPROCESSOR_ARITHMETIC_SUB_HPP
2 #define BOOST_PREPROCESSOR_ARITHMETIC_SUB_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/dec.hpp>
17 #include <boost/preprocessor/tuple/elem.hpp>
18 #include <boost/preprocessor/while.hpp>
19
20 /** <p>Expands to the difference of <code>X</code> and <code>Y</code>.</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_SUB(4,3)</code> expands to <code>1</code> (a
26 single token).</p>
27
28 <h3>Test</h3>
29 <ul>
30   <li><a href="../../test/arithmetic_test.cpp">arithmetic_test.cpp</a></li>
31 </ul>
32 */
33 #define BOOST_PP_SUB(X,Y) BOOST_PP_SUB_D(0,X,Y)
34
35 /** <p>Can be used inside BOOST_PP_WHILE() (see for an explanation of the D parameter).</p> */
36 #define BOOST_PP_SUB_D(D,X,Y) BOOST_PP_TUPLE_ELEM(2,0,BOOST_PP_WHILE##D(BOOST_PP_SUB_C,BOOST_PP_SUB_F,(X,Y)))
37
38 #define BOOST_PP_SUB_C(D,RC) BOOST_PP_TUPLE_ELEM(2,1,RC)
39 #define BOOST_PP_SUB_F(D,RC) (BOOST_PP_DEC(BOOST_PP_TUPLE_ELEM(2,0,RC)),BOOST_PP_DEC(BOOST_PP_TUPLE_ELEM(2,1,RC)))
40 #endif