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,19 +13,14 @@
* See http://www.boost.org for most recent version.
*/
/** \file
<a href="../../../../boost/preprocessor/logical/and.hpp">Click here to see the header.</a>
*/
#include <boost/preprocessor/logical/not.hpp>
/** Expands to the logical AND of the operands.
/** <P>Expands to the logical AND of the operands.</P>
For example, BOOST_PP_AND(0,5) expands to 0 (a single token).
<P>For example, BOOST_PP_AND(0,5) expands to 0 (a single token).</P>
*/
#define BOOST_PP_AND(X,Y) BOOST_PP_NOR(BOOST_PP_NOT(X),BOOST_PP_NOT(Y))
/** Obsolete. Use BOOST_PP_AND(). */
/** <P>Obsolete. Use BOOST_PP_AND().</P> */
#define BOOST_PREPROCESSOR_AND(X,Y) BOOST_PP_AND(X,Y)
#endif

View File

@ -13,12 +13,7 @@
* See http://www.boost.org for most recent version.
*/
/** \file
<a href="../../../../boost/preprocessor/logical/bool.hpp">Click here to see the header.</a>
*/
/** Expands to 0 if X == 0 and 1 if X != 0. */
/** <P>Expands to 0 if X == 0 and 1 if X != 0.</P> */
#define BOOST_PP_BOOL(X) BOOST_PP_BOOL_DELAY(X)
#ifndef DOXYGEN_SHOULD_SKIP_THIS
@ -157,6 +152,6 @@
#define BOOST_PP_BOOL128 1
#endif
/** Obsolete. Use BOOST_PP_BOOL(). */
/** <P>Obsolete. Use BOOST_PP_BOOL().</P> */
#define BOOST_PREPROCESSOR_BOOL(X) BOOST_PP_BOOL(X)
#endif

View File

@ -13,16 +13,11 @@
* See http://www.boost.org for most recent version.
*/
/** \file
<a href="../../../../boost/preprocessor/logical/nor.hpp">Click here to see the header.</a>
*/
#include <boost/preprocessor/logical/bool.hpp>
/** Expands to the logical NEITHER OR of the operands.
/** <P>Expands to the logical NEITHER OR of the operands.</P>
For example, BOOST_PP_NOR(0,5) expands to 0 (a single token).
<P>For example, BOOST_PP_NOR(0,5) expands to 0 (a single token).</P>
*/
#define BOOST_PP_NOR(X,Y) BOOST_PP_NOR_BOOL(BOOST_PP_BOOL(X),BOOST_PP_BOOL(Y))
@ -35,6 +30,6 @@ For example, BOOST_PP_NOR(0,5) expands to 0 (a single token).
#define BOOST_PP_NOR_BOOL11 0
#endif
/** Obsolete. Use BOOST_PP_NOR(). */
/** <P>Obsolete. Use BOOST_PP_NOR().</P> */
#define BOOST_PREPROCESSOR_NOR(X,Y) BOOST_PP_NOR(X,Y)
#endif

View File

@ -13,19 +13,14 @@
* See http://www.boost.org for most recent version.
*/
/** \file
<a href="../../../../boost/preprocessor/logical/not.hpp">Click here to see the header.</a>
*/
#include <boost/preprocessor/logical/nor.hpp>
/** Expands to the logical NOT of the operand.
/** <P>Expands to the logical NOT of the operand.</P>
For example, BOOST_PP_NOT(0) expands to 1 (a single token).
<P>For example, BOOST_PP_NOT(0) expands to 1 (a single token).</P>
*/
#define BOOST_PP_NOT(X) BOOST_PP_NOR(X,X)
/** Obsolete. Use BOOST_PP_NOT(). */
/** <P>Obsolete. Use BOOST_PP_NOT().</P> */
#define BOOST_PREPROCESSOR_NOT(X) BOOST_PP_NOT(X)
#endif

View File

@ -13,19 +13,14 @@
* See http://www.boost.org for most recent version.
*/
/** \file
<a href="../../../../boost/preprocessor/logical/or.hpp">Click here to see the header.</a>
*/
#include <boost/preprocessor/logical/not.hpp>
/** Expands to the logical OR of the operands.
/** <P>Expands to the logical OR of the operands.</P>
For example, BOOST_PP_OR(0,2) expands to 1 (a single token).
<P>For example, BOOST_PP_OR(0,2) expands to 1 (a single token).</P>
*/
#define BOOST_PP_OR(X,Y) BOOST_PP_NOT(BOOST_PP_NOR(X,Y))
/** Obsolete. Use BOOST_PP_OR(). */
/** <P>Obsolete. Use BOOST_PP_OR().</P> */
#define BOOST_PREPROCESSOR_OR(X,Y) BOOST_PP_OR(X,Y)
#endif

View File

@ -13,19 +13,14 @@
* See http://www.boost.org for most recent version.
*/
/** \file
<a href="../../../../boost/preprocessor/logical/xor.hpp">Click here to see the header.</a>
*/
#include <boost/preprocessor/logical/and.hpp>
/** Expands to the logical EXCLUSIVE OR of the operands.
/** <P>Expands to the logical EXCLUSIVE OR of the operands.</P>
For example, BOOST_PP_XOR(1,2) expands to 0 (a single token).
<P>For example, BOOST_PP_XOR(1,2) expands to 0 (a single token).</P>
*/
#define BOOST_PP_XOR(X,Y) BOOST_PP_NOR(BOOST_PP_NOR(X,Y),BOOST_PP_AND(X,Y))
/** Obsolete. Use BOOST_PP_XOR(). */
/** <P>Obsolete. Use BOOST_PP_XOR().</P> */
#define BOOST_PREPROCESSOR_XOR(X,Y) BOOST_PP_XOR(X,Y)
#endif