#include <boost/preprocessor/comparison/less_equal.hpp> #include <boost/preprocessor/list/filter.hpp> #define LIST (1, (2, (3, (4, (5, BOOST_PP_NIL))))) #define PRED(d, _, num) BOOST_PP_LESS_EQUAL_D(d, num, 4) BOOST_PP_LIST_FILTER(PRED, nil, LIST) // expands to (1, (2, (3, (4, BOOST_PP_NIL))))
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt)