File indexing completed on 2026-03-31 08:12:57
0001 #
0002
0003
0004
0005
0006
0007
0008
0009 0010 ">#
0011 #
0012 0013 ">#
0014 # ifndef BOOST_PREPROCESSOR_FACILITIES_APPLY_HPP
0015 # define BOOST_PREPROCESSOR_FACILITIES_APPLY_HPP
0016 0017 ">#
0018 # include <boost/preprocessor/config/config.hpp>
0019 # include <boost/preprocessor/control/expr_iif.hpp>
0020 # include <boost/preprocessor/detail/is_unary.hpp>
0021 # include <boost/preprocessor/tuple/rem.hpp>
0022 0023 ">#
0024 #
0025 0026 ">#
0027 # if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
0028 # define BOOST_PP_APPLY(x) BOOST_PP_APPLY_I(x)
0029 # define BOOST_PP_APPLY_I(x) BOOST_PP_EXPR_IIF(BOOST_PP_IS_UNARY(x), BOOST_PP_TUPLE_REM_1 x)
0030 # elif BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC()
0031 # define BOOST_PP_APPLY(x) BOOST_PP_APPLY_I(x)
0032 # define BOOST_PP_APPLY_I(x) BOOST_PP_APPLY_ ## x
0033 # define BOOST_PP_APPLY_(x) x
0034 # define BOOST_PP_APPLY_BOOST_PP_NIL
0035 # else
0036 # define BOOST_PP_APPLY(x) BOOST_PP_EXPR_IIF(BOOST_PP_IS_UNARY(x), BOOST_PP_TUPLE_REM_1 x)
0037 # endif
0038 0039 ">#
0040 # endif