From c3b2cc2defde9c971dc696b23191cade6dd11816 Mon Sep 17 00:00:00 2001 From: Paul Mensonides Date: Sun, 8 Sep 2002 10:51:48 +0000 Subject: [PATCH] bad name [SVN r15205] --- docs.1/ref/to_tuple.html | 52 ---------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 docs.1/ref/to_tuple.html diff --git a/docs.1/ref/to_tuple.html b/docs.1/ref/to_tuple.html deleted file mode 100644 index 5f60410..0000000 --- a/docs.1/ref/to_tuple.html +++ /dev/null @@ -1,52 +0,0 @@ - - - BOOST_PP_LIST_TO_TUPLE - - - - -
- The BOOST_PP_LIST_TO_TUPLE macro converts a list to a tuple. -
-

Usage

-
- BOOST_PP_LIST_TO_TUPLE(list) -
-

Arguments

-
-
list
-
- The list to be converted. -
-
-

Remarks

-
- If list is, for example, (a, (b, (c, BOOST_PP_NIL))), - this macro will produce: -
- (a, b, c) -
-
-
- Previously, this macro could not be used inside BOOST_PP_FOR.  - There is no longer any such restriction.  - It is more efficient, however, to use BOOST_PP_LIST_TO_TUPLE_R in such a situation. -
-

See Also

- -

Requirements

-
- Header:  <boost/preprocessor/list/to_tuple.hpp> -
-

Sample Code

-
-#include <boost/preprocessor/list/to_tuple.hpp>
-
-#define LIST (w, (x, (y, (z, BOOST_PP_NIL))))
-
-BOOST_PP_LIST_TO_TUPLE(LIST) // expands to (w, x, y, z)
-
- -