The BOOST_PP_SET_REVERSE macro reverses a set.

Usage

BOOST_PP_SET_REVERSE(set)

Arguments

set
The set to be reversed.

Remarks

For maximum efficiency, use BOOST_PP_SET_REVERSE_S.

See Also

Requirements

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

Sample Code

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

#define SET (1)(2)(3)

BOOST_PP_SET_REVERSE(SET) // expands to (3)(2)(1)