BOOST_PP_LIST_APPEND
マクロは 2つの リスト を追加する。
Usage
BOOST_PP_LIST_APPEND(a, b)
Arguments
-
a
: 1つ目の リスト 。 -
b
: 2つ目の リスト 。
Remarks
このマクロは 2つのリストを追加する。 たとえば、もし a
が (1, (2, (3, BOOST_PP_NIL)))
、b
が (4, (5, BOOST_PP_NIL))
ならば、このマクロは
(1, (2, (3, (4, (5, BOOST_PP_NIL)))))
に展開されるだろう。
以前、このマクロは BOOST_PP_WHILE
の中では使えなかったが、現在ではこのような制限はない。 しかし、そのような状況では BOOST_PP_LIST_APPEND_D
を使うほうがより能率的である。
See Also
Requirements
Header: <boost/preprocessor/list/append.hpp>
Sample Code
#include <boost/preprocessor/list/append.hpp>
#define L1 (a, (b, (c, BOOST_PP_NIL)))
#define L2 (x, (y, (z, BOOST_PP_NIL)))
BOOST_PP_LIST_APPENDe(L1, L2)
// (a, (b, (c, (x, (y, (z, BOOST_PP_NIL)))))) に展開される