2002-10-13 05:47:23 +00:00
|
|
|
<html>
|
2002-11-07 23:39:29 +00:00
|
|
|
<head>
|
|
|
|
<title>BOOST_PP_SEQ_NIL</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../styles.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div style="margin-left: 0px;">
|
|
|
|
The <b>BOOST_PP_SEQ_NIL</b> macro is a placeholder macro for an empty <i>seq</i>.
|
|
|
|
It is only valid if it is elements are appended to the end of this empty
|
|
|
|
"seq."
|
|
|
|
</div>
|
|
|
|
<h4>
|
|
|
|
Usage
|
|
|
|
</h4>
|
2002-10-13 05:47:23 +00:00
|
|
|
<div class="code">
|
2002-11-07 23:39:29 +00:00
|
|
|
<b>BOOST_PP_SEQ_NIL</b>
|
2002-10-13 05:47:23 +00:00
|
|
|
</div>
|
2002-11-07 23:39:29 +00:00
|
|
|
<h4>
|
|
|
|
Remarks
|
|
|
|
</h4>
|
2002-10-13 05:47:23 +00:00
|
|
|
<div>
|
2002-11-07 23:39:29 +00:00
|
|
|
This macro is a utility macro intended as a empty starting point for appending
|
|
|
|
to the tail. It is <i>not</i> a nil <i>seq</i>. When an element is
|
|
|
|
appended to this macro, it expands on the element and to the element--thereby
|
|
|
|
removing itself. For example, both <b>BOOST_PP_SEQ_NIL</b>(<i>x</i>) and <b>BOOST_PP_SEQ_PUSH_BACK</b>(<b>BOOST_PP_SEQ_NIL</b>,
|
|
|
|
<i>x</i>) expand to <i>x</i>.
|
2002-10-13 05:47:23 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
2002-11-07 23:39:29 +00:00
|
|
|
If any <b>BOOST_PP_SEQ_</b>* macro (other than <b>BOOST_PP_SEQ_PUSH_BACK</b>)
|
|
|
|
is invoked with an argument that contains <b>BOOST_PP_SEQ_NIL</b>, the behavior
|
|
|
|
is undefined and in most cases will result in obscure errors.
|
2002-10-13 05:47:23 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
2002-11-07 23:39:29 +00:00
|
|
|
The closest thing available to <b>BOOST_PP_SEQ_NIL</b> for appending to the
|
|
|
|
head is <b>BOOST_PP_EMPTY</b>. After all the elements have been
|
|
|
|
prepended, empty parenthesis can be invoked on the tail to remove the <b>BOOST_PP_EMPTY</b>.
|
|
|
|
As with <b>BOOST_PP_SEQ_NIL</b>, passing an argument that contains <b>BOOST_PP_EMPTY</b>
|
|
|
|
to any <b>BOOST_PP_SEQ_</b>* macro (other than <b>BOOST_PP_SEQ_PUSH_FRONT</b>)
|
|
|
|
is undefined.
|
2002-10-13 05:47:23 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
2002-11-07 23:39:29 +00:00
|
|
|
(It is also possible to start with an extra element and pop it off when you
|
|
|
|
have finished appending to it.)
|
2002-10-13 05:47:23 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
2002-11-07 23:39:29 +00:00
|
|
|
In C99, neither of these macros are necessary since it is legal to pass empty
|
|
|
|
arguments.
|
2002-10-13 05:47:23 +00:00
|
|
|
</div>
|
2002-11-07 23:39:29 +00:00
|
|
|
<h4>
|
|
|
|
See Also
|
|
|
|
</h4>
|
2002-10-13 05:47:23 +00:00
|
|
|
<ul>
|
2002-11-07 23:39:29 +00:00
|
|
|
<li>
|
|
|
|
<a href="empty.html">BOOST_PP_EMPTY</a></li>
|
2002-10-13 05:47:23 +00:00
|
|
|
</ul>
|
2002-11-07 23:39:29 +00:00
|
|
|
<h4>
|
|
|
|
Requirements
|
|
|
|
</h4>
|
2002-10-13 05:47:23 +00:00
|
|
|
<div>
|
2004-10-11 06:58:45 +00:00
|
|
|
<b>Header:</b> <a href="../headers/seq/seq.html"><boost/preprocessor/seq/seq.hpp></a>
|
2002-10-13 05:47:23 +00:00
|
|
|
</div>
|
2002-11-07 23:39:29 +00:00
|
|
|
<h4>
|
|
|
|
Sample Code
|
|
|
|
</h4>
|
|
|
|
<div>
|
|
|
|
<pre>
|
2004-10-11 06:58:45 +00:00
|
|
|
#include <<a href="../headers/facilities/empty.html">boost/preprocessor/facilities/empty.hpp</a>>
|
|
|
|
#include <<a href="../headers/seq/push_back.html">boost/preprocessor/seq/push_back.hpp</a>>
|
|
|
|
#include <<a href="../headers/seq/push_front.html">boost/preprocessor/seq/push_front.hpp</a>>
|
|
|
|
#include <<a href="../headers/seq/seq.html">boost/preprocessor/seq/seq.hpp</a>>
|
2002-10-13 05:47:23 +00:00
|
|
|
|
2002-11-07 23:39:29 +00:00
|
|
|
#define SEQ_L <a href="seq_nil.html">BOOST_PP_SEQ_NIL</a>
|
|
|
|
#define SEQ_R <a href="empty.html">BOOST_PP_EMPTY</a>
|
2002-10-13 05:47:23 +00:00
|
|
|
|
2002-11-07 23:39:29 +00:00
|
|
|
<a href="seq_push_back.html">BOOST_PP_SEQ_PUSH_BACK</a>(
|
|
|
|
<a href="seq_push_back.html">BOOST_PP_SEQ_PUSH_BACK</a>(SEQ_L, a), b
|
2002-10-13 05:47:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// expands to (a)(b)
|
|
|
|
|
2002-11-07 23:39:29 +00:00
|
|
|
<a href="seq_push_front.html">BOOST_PP_SEQ_PUSH_FRONT</a>(
|
|
|
|
<a href="seq_push_front.html">BOOST_PP_SEQ_PUSH_FRONT</a>(SEQ_R, a), b
|
2002-10-13 05:47:23 +00:00
|
|
|
)()
|
|
|
|
|
|
|
|
// expands to (b)(a)
|
2002-11-07 23:39:29 +00:00
|
|
|
</pre>
|
|
|
|
</div>
|
|
|
|
</body>
|
2002-10-13 05:47:23 +00:00
|
|
|
</html>
|