forked from boostorg/preprocessor
Updated docs
[SVN r12687]
This commit is contained in:
@ -15,12 +15,12 @@
|
||||
|
||||
#include <boost/preprocessor/logical/not.hpp>
|
||||
|
||||
/** <P>Expands to the logical AND of the operands.</P>
|
||||
/** <p>Expands to the logical AND of the operands.</p>
|
||||
|
||||
<P>For example, BOOST_PP_AND(0,5) expands to 0 (a single token).</P>
|
||||
<p>For example, <code>BOOST_PP_AND(0,5)</code> expands to <code>0</code> (a single token).</p>
|
||||
*/
|
||||
#define BOOST_PP_AND(X,Y) BOOST_PP_NOR(BOOST_PP_NOT(X),BOOST_PP_NOT(Y))
|
||||
|
||||
/** <P>Obsolete. Use BOOST_PP_AND().</P> */
|
||||
/** <p>Obsolete. Use BOOST_PP_AND().</p> */
|
||||
#define BOOST_PREPROCESSOR_AND(X,Y) BOOST_PP_AND(X,Y)
|
||||
#endif
|
||||
|
@ -13,7 +13,7 @@
|
||||
* See http://www.boost.org for most recent version.
|
||||
*/
|
||||
|
||||
/** <P>Expands to 0 if X == 0 and 1 if X != 0.</P> */
|
||||
/** <p>Expands to <code>0</code> if <code>X == 0</code> and <code>1</code> if <code>X != 0</code>.</p> */
|
||||
#define BOOST_PP_BOOL(X) BOOST_PP_BOOL_DELAY(X)
|
||||
|
||||
#ifndef DOXYGEN_SHOULD_SKIP_THIS
|
||||
@ -152,6 +152,6 @@
|
||||
#define BOOST_PP_BOOL128 1
|
||||
#endif
|
||||
|
||||
/** <P>Obsolete. Use BOOST_PP_BOOL().</P> */
|
||||
/** <p>Obsolete. Use BOOST_PP_BOOL().</p> */
|
||||
#define BOOST_PREPROCESSOR_BOOL(X) BOOST_PP_BOOL(X)
|
||||
#endif
|
||||
|
@ -15,9 +15,9 @@
|
||||
|
||||
#include <boost/preprocessor/logical/bool.hpp>
|
||||
|
||||
/** <P>Expands to the logical NEITHER OR of the operands.</P>
|
||||
/** <p>Expands to the logical NEITHER OR of the operands.</p>
|
||||
|
||||
<P>For example, BOOST_PP_NOR(0,5) expands to 0 (a single token).</P>
|
||||
<p>For example, <code>BOOST_PP_NOR(0,5)</code> expands to <code>0</code> (a single token).</p>
|
||||
*/
|
||||
#define BOOST_PP_NOR(X,Y) BOOST_PP_NOR_BOOL(BOOST_PP_BOOL(X),BOOST_PP_BOOL(Y))
|
||||
|
||||
@ -30,6 +30,6 @@
|
||||
#define BOOST_PP_NOR_BOOL11 0
|
||||
#endif
|
||||
|
||||
/** <P>Obsolete. Use BOOST_PP_NOR().</P> */
|
||||
/** <p>Obsolete. Use BOOST_PP_NOR().</p> */
|
||||
#define BOOST_PREPROCESSOR_NOR(X,Y) BOOST_PP_NOR(X,Y)
|
||||
#endif
|
||||
|
@ -15,12 +15,12 @@
|
||||
|
||||
#include <boost/preprocessor/logical/nor.hpp>
|
||||
|
||||
/** <P>Expands to the logical NOT of the operand.</P>
|
||||
/** <p>Expands to the logical NOT of the operand.</p>
|
||||
|
||||
<P>For example, BOOST_PP_NOT(0) expands to 1 (a single token).</P>
|
||||
<p>For example, <code>BOOST_PP_NOT(0)</code> expands to <code>1</code> (a single token).</p>
|
||||
*/
|
||||
#define BOOST_PP_NOT(X) BOOST_PP_NOR(X,X)
|
||||
|
||||
/** <P>Obsolete. Use BOOST_PP_NOT().</P> */
|
||||
/** <p>Obsolete. Use BOOST_PP_NOT().</p> */
|
||||
#define BOOST_PREPROCESSOR_NOT(X) BOOST_PP_NOT(X)
|
||||
#endif
|
||||
|
@ -15,12 +15,12 @@
|
||||
|
||||
#include <boost/preprocessor/logical/not.hpp>
|
||||
|
||||
/** <P>Expands to the logical OR of the operands.</P>
|
||||
/** <p>Expands to the logical OR of the operands.</p>
|
||||
|
||||
<P>For example, BOOST_PP_OR(0,2) expands to 1 (a single token).</P>
|
||||
<p>For example, <code>BOOST_PP_OR(0,2)</code> expands to <code>1</code> (a single token).</p>
|
||||
*/
|
||||
#define BOOST_PP_OR(X,Y) BOOST_PP_NOT(BOOST_PP_NOR(X,Y))
|
||||
|
||||
/** <P>Obsolete. Use BOOST_PP_OR().</P> */
|
||||
/** <p>Obsolete. Use BOOST_PP_OR().</p> */
|
||||
#define BOOST_PREPROCESSOR_OR(X,Y) BOOST_PP_OR(X,Y)
|
||||
#endif
|
||||
|
@ -15,12 +15,12 @@
|
||||
|
||||
#include <boost/preprocessor/logical/and.hpp>
|
||||
|
||||
/** <P>Expands to the logical EXCLUSIVE OR of the operands.</P>
|
||||
/** <p>Expands to the logical EXCLUSIVE OR of the operands.</p>
|
||||
|
||||
<P>For example, BOOST_PP_XOR(1,2) expands to 0 (a single token).</P>
|
||||
<p>For example, <code>BOOST_PP_XOR(1,2)</code> expands to <code>0</code> (a single token).</p>
|
||||
*/
|
||||
#define BOOST_PP_XOR(X,Y) BOOST_PP_NOR(BOOST_PP_NOR(X,Y),BOOST_PP_AND(X,Y))
|
||||
|
||||
/** <P>Obsolete. Use BOOST_PP_XOR().</P> */
|
||||
/** <p>Obsolete. Use BOOST_PP_XOR().</p> */
|
||||
#define BOOST_PREPROCESSOR_XOR(X,Y) BOOST_PP_XOR(X,Y)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user