/usr/include/boost/preprocessor/facilities
NameSizeModeActions
detail/-0755rm
apply.hpp14750644editdlrm
check_empty.hpp10310644editdlrm
empty.hpp5670644editdlrm
expand.hpp8420644editdlrm
identity.hpp7590644editdlrm
intercept.hpp89130644editdlrm
is_1.hpp9460644editdlrm
is_empty.hpp25440644editdlrm
is_empty_or_1.hpp12050644editdlrm
is_empty_variadic.hpp25640644editdlrm
overload.hpp11500644editdlrm
va_opt.hpp16120644editdlrm
Edit: /usr/include/boost/preprocessor/facilities/apply.hpp (1475B)
# /* ************************************************************************** # * * # * (C) Copyright Paul Mensonides 2002. # * Distributed under the Boost Software License, Version 1.0. (See # * accompanying file LICENSE_1_0.txt or copy at # * http://www.boost.org/LICENSE_1_0.txt) # * * # ************************************************************************** */ # # /* See http://www.boost.org for most recent version. */ # # ifndef BOOST_PREPROCESSOR_FACILITIES_APPLY_HPP # define BOOST_PREPROCESSOR_FACILITIES_APPLY_HPP # # include # include # include # include # # /* BOOST_PP_APPLY */ # # if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() # define BOOST_PP_APPLY(x) BOOST_PP_APPLY_I(x) # define BOOST_PP_APPLY_I(x) BOOST_PP_EXPR_IIF(BOOST_PP_IS_UNARY(x), BOOST_PP_TUPLE_REM_1 x) # elif BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC() # define BOOST_PP_APPLY(x) BOOST_PP_APPLY_I(x) # define BOOST_PP_APPLY_I(x) BOOST_PP_APPLY_ ## x # define BOOST_PP_APPLY_(x) x # define BOOST_PP_APPLY_BOOST_PP_NIL # else # define BOOST_PP_APPLY(x) BOOST_PP_EXPR_IIF(BOOST_PP_IS_UNARY(x), BOOST_PP_TUPLE_REM_1 x) # endif # # endif