Tweaking docs

[SVN r12604]
This commit is contained in:
Vesa Karvonen
2002-01-31 14:21:31 +00:00
parent f1590b8c08
commit 2261c57310
66 changed files with 495 additions and 680 deletions

View File

@ -13,23 +13,18 @@
* See http://www.boost.org for most recent version.
*/
/** \file
/** <P>Expands to a macro that eats a tuple of the specified length.</P>
<a href="../../../../boost/preprocessor/tuple/eat.hpp">Click here to see the header.</a>
*/
<P>BOOST_PP_TUPLE_EAT() is designed to be used with BOOST_PP_IF() like
BOOST_PP_EMPTY().</P>
/** Expands to a macro that eats a tuple of the specified length.
<P>For example,</P>
BOOST_PP_TUPLE_EAT() is designed to be used with BOOST_PP_IF() like
BOOST_PP_EMPTY().
For example,
<PRE>\verbatim
<PRE>
BOOST_PP_IF(0,BOOST_PP_ENUM_PARAMS,BOOST_PP_TUPLE_EAT(2))(10,P)
\endverbatim</PRE>
</PRE>
expands to nothing.
<P>expands to nothing.</P>
*/
#define BOOST_PP_TUPLE_EAT(N) BOOST_PP_TUPLE_EAT_DELAY(N)