Updated docs

[SVN r12687]
This commit is contained in:
Vesa Karvonen
2002-02-04 13:32:28 +00:00
parent 6fa0d837a3
commit 8432192ac0
66 changed files with 627 additions and 712 deletions

View File

@ -17,18 +17,18 @@
#include <boost/preprocessor/repeat.hpp>
#include <boost/preprocessor/tuple.hpp>
/** <P>Generates a comma separated list.</P>
/** <p>Generates a comma separated list.</p>
<P>In other words, expands to the sequence:</P>
<p>In other words, expands to the sequence:</p>
<PRE>
F(0,P), F(1,P), ..., F(N-1,P)
</PRE>
<pre>
F(0,P), F(1,P), ..., F(BOOST_PP_DEC(N),P)
</pre>
<H3>Uses</H3>
<UL>
<LI>BOOST_PP_REPEAT()
</UL>
<h3>Uses</h3>
<ul>
<li>BOOST_PP_REPEAT()</li>
</ul>
*/
#define BOOST_PP_ENUM(N,F,P) BOOST_PP_REPEAT(N,BOOST_PP_ENUM_F,(F,P))