如何压缩多个Boost预处理器序列?

时间:2017-02-01 18:39:33

标签: c++ c c-preprocessor boost-preprocessor

给定多个Boost预处理器序列:

#define S1 (a)(b)(c)
#define S2 (1)(2)(3)
#define S3 (x1)(x2)(x3)

如何使用预处理器压缩它们,最终结果为((a)(1)(x1))((b)(2)(x2))((c)(3)(x3))

备注

  • 我想出了自己的答案,但我愿意在合理的时间内接受比以下答案更好的解决方案。
  • 请不要删除标记,因为此Boost.Preprocessor适用于C ++和C,我的问题针对两种语言。

1 个答案:

答案 0 :(得分:1)

您可以为此目的定义SEQ_ZIP宏,如下所示:

#include <boost/preprocessor/control/expr_if.hpp>
#include <boost/preprocessor/repetition/repeat.hpp>
#include <boost/preprocessor/seq/elem.hpp>
#include <boost/preprocessor/seq/for_each.hpp>
#include <boost/preprocessor/seq/size.hpp>

#define SEQ_ZIP_NTH_(_,d,e) (BOOST_PP_SEQ_ELEM(d, e))
#define SEQ_ZIP_NTHS_(_,i,ss) (BOOST_PP_SEQ_FOR_EACH(SEQ_ZIP_NTH_,i,ss))
#define SEQ_ZIP_2(ne,ss) BOOST_PP_REPEAT(ne, SEQ_ZIP_NTHS_, ss)
#define SEQ_ZIP_(ne,ss) BOOST_PP_EXPR_IF(ne, SEQ_ZIP_2(ne, ss))
#define SEQ_ZIP(ss) SEQ_ZIP_(BOOST_PP_SEQ_SIZE(BOOST_PP_SEQ_ELEM(0,ss)), ss)

并使用它来压缩你的序列:

#define S1 (a)(b)(c)
#define S2 (1)(2)(3)
#define S3 (x1)(x2)(x3)
SEQ_ZIP((S1)(S2)(S3))