[SVN r13974]
This commit is contained in:
Vesa Karvonen
2002-05-18 12:53:05 +00:00
parent def1674ee7
commit 760c4206b4
70 changed files with 314 additions and 314 deletions

View File

@ -21,7 +21,7 @@ BOOST_PP_EMPTY().</p>
<p>For example,</p>
<pre>
BOOST_PP_IF(0,BOOST_PP_ENUM_PARAMS,BOOST_PP_TUPLE_EAT(2))(10,P)
BOOST_PP_IF(0,BOOST_PP_ENUM_PARAMS,BOOST_PP_TUPLE_EAT(2))(10,P)
</pre>
<p>expands to nothing.</p>

View File

@ -18,7 +18,7 @@
<p>For example,</p>
<pre>
BOOST_PP_TUPLE_ELEM(2,1,(A,B))
BOOST_PP_TUPLE_ELEM(2,1,(A,B))
</pre>
<p>expands to <code>B</code>.</p>

View File

@ -18,7 +18,7 @@
<p>For example,</p>
<pre>
BOOST_PP_TUPLE_REVERSE(3,(A,B,C))
BOOST_PP_TUPLE_REVERSE(3,(A,B,C))
</pre>
<p>expands to <code>(C,B,A)</code>.</p>

View File

@ -20,16 +20,16 @@
<p>For example,</p>
<pre>
BOOST_PP_TUPLE_TO_LIST(3,(A,B,C))
BOOST_PP_TUPLE_TO_LIST(3,(A,B,C))
</pre>
<p>expands to the same as</p>
<pre>
BOOST_PP_LIST_CONS(A,
BOOST_PP_LIST_CONS(B,
BOOST_PP_LIST_CONS(C,
BOOST_PP_LIST_NIL)))
BOOST_PP_LIST_CONS(A,
BOOST_PP_LIST_CONS(B,
BOOST_PP_LIST_CONS(C,
BOOST_PP_LIST_NIL)))
</pre>
<h3>See</h3>