Working on docs

[SVN r12586]
This commit is contained in:
Vesa Karvonen
2002-01-30 19:52:31 +00:00
parent 460db18e02
commit e8b6627a48
42 changed files with 165 additions and 117 deletions

View File

@ -26,6 +26,9 @@
/** Expands to the sum of X and Y.
For example, BOOST_PP_ADD(4,3) expands to 7 (a single token).
<H3>Uses</H3>
- BOOST_PP_WHILE()
*/
#define BOOST_PP_ADD(X,Y) BOOST_PP_ADD_D(0,X,Y)

View File

@ -24,6 +24,9 @@
/** Expands to the quotient of X and Y.
For example, BOOST_PP_DIV(4,3) expands to 1 (a single token).
<H3>Uses</H3>
- BOOST_PP_WHILE()
*/
#define BOOST_PP_DIV(X,Y) BOOST_PP_DIV_D(0,X,Y)

View File

@ -23,6 +23,9 @@
/** Expands to the remainder of X and Y.
For example, BOOST_PP_MOD(4,3) expands to 1 (a single token).
<H3>Uses</H3>
- BOOST_PP_WHILE()
*/
#define BOOST_PP_MOD(X,Y) BOOST_PP_MOD_D(0,X,Y)

View File

@ -23,6 +23,9 @@
/** Expands to the product of X and Y.
For example, BOOST_PP_MUL(4,3) expands to 12 (a single token).
<H3>Uses</H3>
- BOOST_PP_WHILE()
*/
#define BOOST_PP_MUL(X,Y) BOOST_PP_MUL_D(0,X,Y)

View File

@ -25,6 +25,9 @@
/** Expands to the difference of X and Y.
For example, BOOST_PP_SUB(4,3) expands to 1 (a single token).
<H3>Uses</H3>
- BOOST_PP_WHILE()
*/
#define BOOST_PP_SUB(X,Y) BOOST_PP_SUB_D(0,X,Y)