/usr/include/boost/preprocessor/list
NameSizeModeActions
detail/-0755rm
adt.hpp21710644editdlrm
append.hpp13590644editdlrm
at.hpp13550644editdlrm
cat.hpp15860644editdlrm
enum.hpp14600644editdlrm
filter.hpp25380644editdlrm
first_n.hpp26840644editdlrm
fold_left.hpp213830644editdlrm
fold_right.hpp13260644editdlrm
for_each.hpp20890644editdlrm
for_each_i.hpp32890644editdlrm
for_each_product.hpp137980644editdlrm
rest_n.hpp23500644editdlrm
reverse.hpp14270644editdlrm
size.hpp24680644editdlrm
to_array.hpp258710644editdlrm
to_seq.hpp11960644editdlrm
to_tuple.hpp18100644editdlrm
transform.hpp23050644editdlrm
Edit: /usr/include/boost/preprocessor/list/to_seq.hpp (1196B)
# /* ************************************************************************** # * * # * (C) Copyright Edward Diener 2011. # * 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) # * * # ************************************************************************** */ # # /* Revised by Paul Mensonides (2011) */ # # /* See http://www.boost.org for most recent version. */ # # ifndef BOOST_PREPROCESSOR_LIST_TO_SEQ_HPP # define BOOST_PREPROCESSOR_LIST_TO_SEQ_HPP # # include # # /* BOOST_PP_LIST_TO_SEQ */ # # define BOOST_PP_LIST_TO_SEQ(list) \ BOOST_PP_LIST_FOR_EACH(BOOST_PP_LIST_TO_SEQ_MACRO, ~, list) \ /**/ # define BOOST_PP_LIST_TO_SEQ_MACRO(r, data, elem) (elem) # # /* BOOST_PP_LIST_TO_SEQ_R */ # # define BOOST_PP_LIST_TO_SEQ_R(r, list) \ BOOST_PP_LIST_FOR_EACH_R(r, BOOST_PP_LIST_TO_SEQ_MACRO, ~, list) \ /**/ # # endif /* BOOST_PREPROCESSOR_LIST_TO_SEQ_HPP */