]> git.lyx.org Git - lyx.git/blob - boost/boost/preprocessor/seq/reverse.hpp
MathML for InsetMathBoldSymbol.
[lyx.git] / boost / boost / preprocessor / seq / reverse.hpp
1 # /* **************************************************************************\r
2 #  *                                                                          *\r
3 #  *     (C) Copyright Paul Mensonides 2002.\r
4 #  *     Distributed under the Boost Software License, Version 1.0. (See\r
5 #  *     accompanying file LICENSE_1_0.txt or copy at\r
6 #  *     http://www.boost.org/LICENSE_1_0.txt)\r
7 #  *                                                                          *\r
8 #  ************************************************************************** */\r
9 #\r
10 # /* See http://www.boost.org for most recent version. */\r
11 #\r
12 # ifndef BOOST_PREPROCESSOR_SEQ_REVERSE_HPP\r
13 # define BOOST_PREPROCESSOR_SEQ_REVERSE_HPP\r
14 #\r
15 # include <boost/preprocessor/config/config.hpp>\r
16 # include <boost/preprocessor/facilities/empty.hpp>\r
17 # include <boost/preprocessor/seq/fold_left.hpp>\r
18 #\r
19 # /* BOOST_PP_SEQ_REVERSE */\r
20 #\r
21 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
22 #    define BOOST_PP_SEQ_REVERSE(seq) BOOST_PP_SEQ_FOLD_LEFT(BOOST_PP_SEQ_REVERSE_O, BOOST_PP_EMPTY, seq)()\r
23 # else\r
24 #    define BOOST_PP_SEQ_REVERSE(seq) BOOST_PP_SEQ_REVERSE_I(seq)\r
25 #    define BOOST_PP_SEQ_REVERSE_I(seq) BOOST_PP_SEQ_FOLD_LEFT(BOOST_PP_SEQ_REVERSE_O, BOOST_PP_EMPTY, seq)()\r
26 # endif\r
27 #\r
28 # define BOOST_PP_SEQ_REVERSE_O(s, state, elem) (elem) state\r
29 #\r
30 # /* BOOST_PP_SEQ_REVERSE_S */\r
31 #\r
32 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()\r
33 #    define BOOST_PP_SEQ_REVERSE_S(s, seq) BOOST_PP_SEQ_FOLD_LEFT_ ## s(BOOST_PP_SEQ_REVERSE_O, BOOST_PP_EMPTY, seq)()\r
34 # else\r
35 #    define BOOST_PP_SEQ_REVERSE_S(s, seq) BOOST_PP_SEQ_REVERSE_S_I(s, seq)\r
36 #    define BOOST_PP_SEQ_REVERSE_S_I(s, seq) BOOST_PP_SEQ_FOLD_LEFT_ ## s(BOOST_PP_SEQ_REVERSE_O, BOOST_PP_EMPTY, seq)()\r
37 # endif\r
38 #\r
39 # endif\r