]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/arithmetic/add.hpp
update
[lyx.git] / boost / boost / preprocessor / arithmetic / add.hpp
1 #ifndef BOOST_PREPROCESSOR_ARITHMETIC_ADD_HPP
2 #define BOOST_PREPROCESSOR_ARITHMETIC_ADD_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/inc.hpp>
18 #include <boost/preprocessor/tuple/elem.hpp>
19 #include <boost/preprocessor/while.hpp>
20
21 /** <p>Expands to the sum of <code>X</code> and <code>Y</code>.</p>
22
23 <p>Both <code>X</code> and <code>Y</code> must expand to integer literals
24 in the range [0, BOOST_PP_LIMIT_MAG].</p>
25
26 <p>For example, <code>BOOST_PP_ADD(4,3)</code> expands to <code>7</code> (a
27 single token).</p>
28
29 <h3>Test</h3>
30 <ul>
31   <li><a href="../../test/arithmetic_test.cpp">arithmetic_test.cpp</a></li>
32 </ul>
33 */
34 #define BOOST_PP_ADD(X,Y) BOOST_PP_ADD_D(0,X,Y)
35
36 /** <p>Can be used inside BOOST_PP_WHILE() (see for an explanation of the D parameter).</p> */
37 #define BOOST_PP_ADD_D(D,X,Y) BOOST_PP_TUPLE_ELEM(2,0,BOOST_PP_WHILE##D(BOOST_PP_ADD_C,BOOST_PP_ADD_F,(X,Y)))
38
39 #define BOOST_PP_ADD_C(D,RC) BOOST_PP_TUPLE_ELEM(2,1,RC)
40 #define BOOST_PP_ADD_F(D,RC) (BOOST_PP_INC(BOOST_PP_TUPLE_ELEM(2,0,RC)),BOOST_PP_DEC(BOOST_PP_TUPLE_ELEM(2,1,RC)))
41 #endif