File indexing completed on 2026-09-15 08:58:50
0001 #
0002
0003
0004
0005
0006
0007
0008
0009
0010 0011 ">#
0012 #
0013 0014 ">#
0015 # ifndef BOOST_PREPROCESSOR_ARRAY_PUSH_FRONT_HPP
0016 # define BOOST_PREPROCESSOR_ARRAY_PUSH_FRONT_HPP
0017 0018 ">#
0019 # include <boost/preprocessor/arithmetic/inc.hpp>
0020 # include <boost/preprocessor/array/data.hpp>
0021 # include <boost/preprocessor/array/size.hpp>
0022 # include <boost/preprocessor/config/config.hpp>
0023 # include <boost/preprocessor/punctuation/comma_if.hpp>
0024 # include <boost/preprocessor/tuple/rem.hpp>
0025 # include <boost/preprocessor/array/detail/get_data.hpp>
0026 0027 ">#
0028 #
0029 0030 ">#
0031 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
0032 # define BOOST_PP_ARRAY_PUSH_FRONT(array, elem) BOOST_PP_ARRAY_PUSH_FRONT_I(BOOST_PP_ARRAY_SIZE(array), BOOST_PP_ARRAY_DATA(array), elem)
0033 # else
0034 # define BOOST_PP_ARRAY_PUSH_FRONT(array, elem) BOOST_PP_ARRAY_PUSH_FRONT_D(array, elem)
0035 # define BOOST_PP_ARRAY_PUSH_FRONT_D(array, elem) BOOST_PP_ARRAY_PUSH_FRONT_I(BOOST_PP_ARRAY_SIZE(array), BOOST_PP_ARRAY_DATA(array), elem)
0036 # endif
0037 0038 ">#
0039 # define BOOST_PP_ARRAY_PUSH_FRONT_I(size, data, elem) (BOOST_PP_INC(size), (elem BOOST_PP_COMMA_IF(size) BOOST_PP_ARRAY_DETAIL_GET_DATA(size,data)))
0040 0041 ">#
0042 # endif