The BOOST_PP_SET_HEAD macro expands to all but the first element of a set.

Usage

BOOST_PP_SET_TAIL(set)

Arguments

set
The set from which the tail is extracted.

See Also

Requirements

Header:  <boost/preprocessor/set/set.hpp>

Sample Code

#include <boost/preprocessor/set/set.hpp>

#define SET (a)(b)(c)

BOOST_PP_SET_HEAD(SET) // expands to a
BOOST_PP_SET_TAIL(SET) // expands to (b)(c)