diff --git a/doc/data.html b/doc/data.html
index c3e45ea..247025e 100644
--- a/doc/data.html
+++ b/doc/data.html
@@ -1,16 +1,18 @@
-
- data.html
-
-
-
-
-
-
-
+
+ data.html
+
+
+
+
+
+ Data Types [back]
+
+
+
diff --git a/doc/data/sets.html b/doc/data/sets.html
index 7747d43..e3a4901 100644
--- a/doc/data/sets.html
+++ b/doc/data/sets.html
@@ -1,57 +1,64 @@
-
- sets.html
-
-
-
- Sets
-
- A set is a group of adjacent parenthesized elements.
- For example,
-
-
- (a )(b )(c )
-
-
- ...is a set of 3 elements--a , b , and c .
-
-
- Sets are data structures that merge the properties of both lists and tuples
- with the exception that sets cannot be empty.
- Therefore, an "empty" set is considered a special case scenario that must be handled separately in C++.
-
-
-#define SET (x)(y)(z)
+
+ seqs.html
+
+
+
+
+ Sets
+
+
+ A seq is a group of adjacent parenthesized elements. For example,
+
+
+ (a )(b )(c )
+
+
+ ...is a seq of 3 elements--a , b , and c .
+
+
+ Sets are data structures that merge the properties of both lists and
+ tuples with the exception that seqs cannot be empty.
+ Therefore, an "empty" seq is considered a special case scenario that
+ must be handled separately in C++.
+
+
+
+#define SEQ (x)(y)(z)
#define REVERSE(s, state, elem) (elem) state
// append to head ^
-BOOST_PP_SET_FOLD_LEFT(REVERSE, BOOST_PP_EMPTY, SET)()
+BOOST_PP_SEQ_FOLD_LEFT(REVERSE, BOOST_PP_EMPTY, SEQ)()
// #1 #2
- // 1) placeholder for "empty" set
+ // 1) placeholder for "empty" seq
// 2) remove placeholder
-#define SET_B (1)(2)(3)
+#define SEQ_B (1)(2)(3)
#define INC(s, state, elem) state (BOOST_PP_INC(elem))
// append to tail ^
-BOOST_PP_SET_FOLD_RIGHT(INC, BOOST_PP_SET_NIL, SET)
+BOOST_PP_SEQ_FOLD_RIGHT(INC, BOOST_PP_SEQ_NIL, SEQ)
// ^
// special placeholder that will be "eaten"
// by appending to the tail
-
-
- Sets are extremely efficient.
- Element access speed approaches random access--even with sets of up to 256 elements.
- This is because element access (among other things) is implemented iteratively rather than recursively.
- Therefore, elements can be accessed at extremely high indices even on preprocessors with low maximum expansion depths.
-
-
- Elements of a set can be extracted with
- BOOST_PP_SET_ELEM .
-
- Primitives
+
+
+
+ Sets are extremely efficient. Element access speed approaches
+ random access--even with seqs of up to 256 elements. This
+ is because element access (among other things) is implemented iteratively
+ rather than recursively. Therefore, elements can be accessed at extremely
+ high indices even on preprocessors with low maximum expansion depths.
+
+
+ Elements of a seq can be extracted with BOOST_PP_SEQ_ELEM .
+
+
+ Primitives
+
-
+
diff --git a/doc/headers.html b/doc/headers.html
index 70716c6..7b0be9b 100644
--- a/doc/headers.html
+++ b/doc/headers.html
@@ -1,201 +1,389 @@
-
- headers.html
-
-
-
-
-
-
-
-
+
+ headers.html
+
+
+
+
+
+
+
+
diff --git a/doc/headers/config/limits.hpp.html b/doc/headers/config/limits.hpp.html
index b728d13..eb62fa0 100644
--- a/doc/headers/config/limits.hpp.html
+++ b/doc/headers/config/limits.hpp.html
@@ -1,29 +1,44 @@
-
- config/limits.hpp
-
-
-
-
- The config/limits.hpp header defines various library limits.
-
- Usage
+
+ config/limits.hpp
+
+
+
+
+ The config/limits.hpp header defines various library limits.
+
+
+ Usage
+
#include <boost/preprocessor/config/limits.hpp>
- Contents
+
+ Contents
+
-
+
diff --git a/doc/headers/set.hpp.html b/doc/headers/set.hpp.html
index 9fed5cb..25e4d4c 100644
--- a/doc/headers/set.hpp.html
+++ b/doc/headers/set.hpp.html
@@ -1,43 +1,72 @@
-
- set.hpp
-
-
-
-
- The set.hpp includes the headers in the set folder.
-
- Usage
-
- #include
<boost/preprocessor/set.hpp>
+
+
seq.hpp
+
+
+
+
+ The seq.hpp includes the headers in the seq folder.
-
Includes
+
+ Usage
+
+
+ #include <boost/preprocessor/seq.hpp>
+
+
+ Includes
+
-
+
diff --git a/doc/headers/set/cat.hpp.html b/doc/headers/set/cat.hpp.html
index eb2f4bf..ba024da 100644
--- a/doc/headers/set/cat.hpp.html
+++ b/doc/headers/set/cat.hpp.html
@@ -1,20 +1,27 @@
-
-
set/cat.hpp
-
-
-
-
- The set/cat.hpp header defines macros for concatenating all elements in a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/cat.hpp>
+
+
seq/cat.hpp
+
+
+
+
+ The seq/cat.hpp header defines macros for concatenating all elements in
+ a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/cat.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/elem.hpp.html b/doc/headers/set/elem.hpp.html
index b16aa19..e6fd49d 100644
--- a/doc/headers/set/elem.hpp.html
+++ b/doc/headers/set/elem.hpp.html
@@ -1,19 +1,24 @@
-
-
set/elem.hpp
-
-
-
-
- The set/elem.hpp header defines a macro to extract an element from a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/elem.hpp>
+
+
seq/elem.hpp
+
+
+
+
+ The seq/elem.hpp header defines a macro to extract an element from a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/elem.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/enum.hpp.html b/doc/headers/set/enum.hpp.html
index ccb5432..c5a7180 100644
--- a/doc/headers/set/enum.hpp.html
+++ b/doc/headers/set/enum.hpp.html
@@ -1,19 +1,24 @@
-
-
set/enum.hpp
-
-
-
-
- The set/enum.hpp header defines a macro to enumerate the elements in a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/enum.hpp>
+
+
seq/enum.hpp
+
+
+
+
+ The seq/enum.hpp header defines a macro to enumerate the elements in a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/enum.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/filter.hpp.html b/doc/headers/set/filter.hpp.html
index be89274..c8d88ad 100644
--- a/doc/headers/set/filter.hpp.html
+++ b/doc/headers/set/filter.hpp.html
@@ -1,20 +1,26 @@
-
-
set/filter.hpp
-
-
-
-
- The set/filter.hpp header defines macros to filter a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/filter.hpp>
+
+
seq/filter.hpp
+
+
+
+
+ The seq/filter.hpp header defines macros to filter a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/filter.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/first_n.hpp.html b/doc/headers/set/first_n.hpp.html
index 280fe5d..79133c4 100644
--- a/doc/headers/set/first_n.hpp.html
+++ b/doc/headers/set/first_n.hpp.html
@@ -1,19 +1,25 @@
-
-
set/first_n.hpp
-
-
-
-
- The set/first_n.hpp header defines a macro that returns the first N elements of a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/first_n.hpp>
+
+
seq/first_n.hpp
+
+
+
+
+ The seq/first_n.hpp header defines a macro that returns the first N
+ elements of a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/first_n.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/fold_left.hpp.html b/doc/headers/set/fold_left.hpp.html
index 6b483a5..a20d48e 100644
--- a/doc/headers/set/fold_left.hpp.html
+++ b/doc/headers/set/fold_left.hpp.html
@@ -1,20 +1,27 @@
-
-
set/fold_left.hpp
-
-
-
-
- The set/fold_left.hpp header defines macros for folding (or accumulating) a set left-to-right.
-
-
Usage
-
- #include
<boost/preprocessor/set/fold_left.hpp>
+
+
seq/fold_left.hpp
+
+
+
+
+ The seq/fold_left.hpp header defines macros for folding (or
+ accumulating) a seq left-to-right.
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/fold_left.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/fold_right.hpp.html b/doc/headers/set/fold_right.hpp.html
index f62cea3..750faf1 100644
--- a/doc/headers/set/fold_right.hpp.html
+++ b/doc/headers/set/fold_right.hpp.html
@@ -1,20 +1,27 @@
-
-
set/fold_right.hpp
-
-
-
-
- The set/fold_right.hpp header defines macros for folding (or accumulating) a set right-to-left.
-
-
Usage
-
- #include
<boost/preprocessor/set/fold_right.hpp>
+
+
seq/fold_right.hpp
+
+
+
+
+ The seq/fold_right.hpp header defines macros for folding (or
+ accumulating) a seq right-to-left.
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/fold_right.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/for_each.hpp.html b/doc/headers/set/for_each.hpp.html
index 3433bd2..ac19ec9 100644
--- a/doc/headers/set/for_each.hpp.html
+++ b/doc/headers/set/for_each.hpp.html
@@ -1,20 +1,27 @@
-
-
set/for_each.hpp
-
-
-
-
- The set/for_each.hpp header defines macros to repeat a macro for each element in a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/for_each.hpp>
+
+
seq/for_each.hpp
+
+
+
+
+ The seq/for_each.hpp header defines macros to repeat a macro for each
+ element in a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/for_each.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/for_each_i.hpp.html b/doc/headers/set/for_each_i.hpp.html
index 0ff50e2..720f5f8 100644
--- a/doc/headers/set/for_each_i.hpp.html
+++ b/doc/headers/set/for_each_i.hpp.html
@@ -1,20 +1,27 @@
-
-
set/for_each_i.hpp
-
-
-
-
- The set/for_each_i.hpp header defines macros to repeat a macro for each element in a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/for_each_i.hpp>
+
+
seq/for_each_i.hpp
+
+
+
+
+ The seq/for_each_i.hpp header defines macros to repeat a macro for each
+ element in a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/for_each_i.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/for_each_product.hpp.html b/doc/headers/set/for_each_product.hpp.html
index 62e33a2..ae3a489 100644
--- a/doc/headers/set/for_each_product.hpp.html
+++ b/doc/headers/set/for_each_product.hpp.html
@@ -1,20 +1,27 @@
-
-
set/for_each_product.hpp
-
-
-
-
- The set/for_each_product.hpp header defines macros to repeat a macro for each cartesian product of several sets .
-
-
Usage
-
- #include
<boost/preprocessor/set/for_each_product.hpp>
+
+
seq/for_each_product.hpp
+
+
+
+
+ The seq/for_each_product.hpp header defines macros to repeat a macro for
+ each cartesian product of several seqs .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/for_each_product.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/insert.hpp.html b/doc/headers/set/insert.hpp.html
index afc7d47..8caa77e 100644
--- a/doc/headers/set/insert.hpp.html
+++ b/doc/headers/set/insert.hpp.html
@@ -1,19 +1,24 @@
-
-
set/insert.hpp
-
-
-
-
- The set/insert.hpp header defines a macro to insert an element into a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/insert.hpp>
+
+
seq/insert.hpp
+
+
+
+
+ The seq/insert.hpp header defines a macro to insert an element into a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/insert.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/pop_back.hpp.html b/doc/headers/set/pop_back.hpp.html
index 5c0c747..86d4f25 100644
--- a/doc/headers/set/pop_back.hpp.html
+++ b/doc/headers/set/pop_back.hpp.html
@@ -1,19 +1,25 @@
-
-
set/pop_back.hpp
-
-
-
-
- The set/pop_back.hpp header defines a macro to pop the last element off a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/pop_back.hpp>
+
+
seq/pop_back.hpp
+
+
+
+
+ The seq/pop_back.hpp header defines a macro to pop the last element off
+ a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/pop_back.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/pop_front.hpp.html b/doc/headers/set/pop_front.hpp.html
index 438d623..6b8a047 100644
--- a/doc/headers/set/pop_front.hpp.html
+++ b/doc/headers/set/pop_front.hpp.html
@@ -1,19 +1,25 @@
-
-
set/pop_front.hpp
-
-
-
-
- The set/pop_front.hpp header defines a macro to pop the first element off a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/pop_front.hpp>
+
+
seq/pop_front.hpp
+
+
+
+
+ The seq/pop_front.hpp header defines a macro to pop the first element
+ off a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/pop_front.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/push_back.hpp.html b/doc/headers/set/push_back.hpp.html
index 9491f1a..d675d83 100644
--- a/doc/headers/set/push_back.hpp.html
+++ b/doc/headers/set/push_back.hpp.html
@@ -1,19 +1,24 @@
-
-
set/push_back.hpp
-
-
-
-
- The set/push_back.hpp header defines a macro to append an element to a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/push_back.hpp>
+
+
seq/push_back.hpp
+
+
+
+
+ The seq/push_back.hpp header defines a macro to append an element to a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/push_back.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/push_front.hpp.html b/doc/headers/set/push_front.hpp.html
index cccbc18..ddced26 100644
--- a/doc/headers/set/push_front.hpp.html
+++ b/doc/headers/set/push_front.hpp.html
@@ -1,19 +1,24 @@
-
-
set/push_front.hpp
-
-
-
-
- The set/push_front.hpp header defines a macro to prepend an element to a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/push_front.hpp>
+
+
seq/push_front.hpp
+
+
+
+
+ The seq/push_front.hpp header defines a macro to prepend an element to a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/push_front.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/remove.hpp.html b/doc/headers/set/remove.hpp.html
index 61a3580..e894515 100644
--- a/doc/headers/set/remove.hpp.html
+++ b/doc/headers/set/remove.hpp.html
@@ -1,19 +1,24 @@
-
-
set/remove.hpp
-
-
-
-
- The set/remove.hpp header defines a macro to remove an element from a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/remove.hpp>
+
+
seq/remove.hpp
+
+
+
+
+ The seq/remove.hpp header defines a macro to remove an element from a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/remove.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/replace.hpp.html b/doc/headers/set/replace.hpp.html
index 453e45d..3b32773 100644
--- a/doc/headers/set/replace.hpp.html
+++ b/doc/headers/set/replace.hpp.html
@@ -1,19 +1,24 @@
-
-
set/replace.hpp
-
-
-
-
- The set/replace.hpp header defines a macro to replace an element in a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/replace.hpp>
+
+
seq/replace.hpp
+
+
+
+
+ The seq/replace.hpp header defines a macro to replace an element in a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/replace.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/rest_n.hpp.html b/doc/headers/set/rest_n.hpp.html
index 9cb2063..dbac3b2 100644
--- a/doc/headers/set/rest_n.hpp.html
+++ b/doc/headers/set/rest_n.hpp.html
@@ -1,19 +1,25 @@
-
-
set/rest_n.hpp
-
-
-
-
- The set/rest_n.hpp header defines a macro for extracting a group of elements from the end of a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/rest_n.hpp>
+
+
seq/rest_n.hpp
+
+
+
+
+ The seq/rest_n.hpp header defines a macro for extracting a group of
+ elements from the end of a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/rest_n.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/reverse.hpp.html b/doc/headers/set/reverse.hpp.html
index 94e9817..ffb5c60 100644
--- a/doc/headers/set/reverse.hpp.html
+++ b/doc/headers/set/reverse.hpp.html
@@ -1,20 +1,26 @@
-
-
set/reverse.hpp
-
-
-
-
- The set/reverse.hpp header defines macros to reverse a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/reverse.hpp>
+
+
seq/reverse.hpp
+
+
+
+
+ The seq/reverse.hpp header defines macros to reverse a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/reverse.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/set.hpp.html b/doc/headers/set/set.hpp.html
index 6920a65..c3eaebc 100644
--- a/doc/headers/set/set.hpp.html
+++ b/doc/headers/set/set.hpp.html
@@ -1,21 +1,28 @@
-
-
set/set.hpp
-
-
-
-
- The set/set.hpp header defines basic primitives for manipulating sets .
-
-
Usage
-
- #include
<boost/preprocessor/set/set.hpp>
+
+
seq/seq.hpp
+
+
+
+
+ The seq/seq.hpp header defines basic primitives for manipulating seqs .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/seq.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/size.hpp.html b/doc/headers/set/size.hpp.html
index 2231438..a851711 100644
--- a/doc/headers/set/size.hpp.html
+++ b/doc/headers/set/size.hpp.html
@@ -1,19 +1,24 @@
-
-
set/size.hpp
-
-
-
-
- The set/size.hpp header defines a macro to calculate the size of a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/size.hpp>
+
+
seq/size.hpp
+
+
+
+
+ The seq/size.hpp header defines a macro to calculate the size of a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/size.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/subset.hpp.html b/doc/headers/set/subset.hpp.html
index 6224951..f49fb6d 100644
--- a/doc/headers/set/subset.hpp.html
+++ b/doc/headers/set/subset.hpp.html
@@ -1,19 +1,24 @@
-
-
set/subset.hpp
-
-
-
-
- The set/subset.hpp header defines a macro that extracts a subset from a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/subset.hpp>
+
+
seq/subseq.hpp
+
+
+
+
+ The seq/subseq.hpp header defines a macro that extracts a subseq from a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/subseq.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/to_array.hpp.html b/doc/headers/set/to_array.hpp.html
index 309ab11..28b28a6 100644
--- a/doc/headers/set/to_array.hpp.html
+++ b/doc/headers/set/to_array.hpp.html
@@ -1,19 +1,25 @@
-
-
set/to_array.hpp
-
-
-
-
- The set/to_array.hpp header defines a macro that converts a set to an array .
-
-
Usage
-
- #include
<boost/preprocessor/set/to_array.hpp>
+
+
seq/to_array.hpp
+
+
+
+
+ The seq/to_array.hpp header defines a macro that converts a seq to
+ an array .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/to_array.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/to_tuple.hpp.html b/doc/headers/set/to_tuple.hpp.html
index 71b26df..fed81dd 100644
--- a/doc/headers/set/to_tuple.hpp.html
+++ b/doc/headers/set/to_tuple.hpp.html
@@ -1,19 +1,25 @@
-
-
set/to_tuple.hpp
-
-
-
-
- The set/to_tuple.hpp header defines a macro that converts a set to an tuple .
-
-
Usage
-
- #include
<boost/preprocessor/set/to_tuple.hpp>
+
+
seq/to_tuple.hpp
+
+
+
+
+ The seq/to_tuple.hpp header defines a macro that converts a seq to
+ an tuple .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/to_tuple.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/set/transform.hpp.html b/doc/headers/set/transform.hpp.html
index c104193..21045b7 100644
--- a/doc/headers/set/transform.hpp.html
+++ b/doc/headers/set/transform.hpp.html
@@ -1,20 +1,26 @@
-
-
set/transform.hpp
-
-
-
-
- The set/transform.hpp header defines macros to transform a set .
-
-
Usage
-
- #include
<boost/preprocessor/set/transform.hpp>
+
+
seq/transform.hpp
+
+
+
+
+ The seq/transform.hpp header defines macros to transform a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/seq/transform.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/headers/tuple/to_set.hpp.html b/doc/headers/tuple/to_set.hpp.html
index bdd0e42..d347942 100644
--- a/doc/headers/tuple/to_set.hpp.html
+++ b/doc/headers/tuple/to_set.hpp.html
@@ -1,19 +1,25 @@
-
-
tuple/to_set.hpp
-
-
-
-
- The tuple/to_set.hpp header defines a macro that converts a tuple to a set .
-
-
Usage
-
- #include
<boost/preprocessor/tuple/to_set.hpp>
+
+
tuple/to_seq.hpp
+
+
+
+
+ The tuple/to_seq.hpp header defines a macro that converts a tuple
+ to a seq .
-
Contents
+
+ Usage
+
+
+ #include <boost/preprocessor/tuple/to_seq.hpp>
+
+
+ Contents
+
-
+
diff --git a/doc/index.html b/doc/index.html
index b509b64..5fd2436 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,13 +1,14 @@
-
-
Boost.Preprocessor
-
-
-
-
-
-
-
- ..
-
+
+
Boost.Preprocessor
+
+
+
+
+
+
+
+
+ ..
+
diff --git a/doc/ref.html b/doc/ref.html
index 4885308..8c199fe 100644
--- a/doc/ref.html
+++ b/doc/ref.html
@@ -1,269 +1,510 @@
-
- ref.html
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+ ref.html
+
+
+
+
+
+ Reference [back]
+
+
+
+