forked from boostorg/preprocessor
Tweaking docs
[SVN r12604]
This commit is contained in:
@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user