diff --git a/doc/adapted.qbk b/doc/adapted.qbk
index 991918c9..a19696fd 100644
--- a/doc/adapted.qbk
+++ b/doc/adapted.qbk
@@ -11,10 +11,7 @@ Fusion provides a couple of adapters for other sequences such as
`std::pair`, __mpl__ sequences, and `boost::array`. These adapters are
written using Fusion's non-intrusive __extension__ mechanism. If you wish
to use these sequences with fusion, simply include the necessary files and
-they will be regarded as first-class, fully conforming fusion sequences
-[footnote Fusion sequences may also be adapted as fully conforming __mpl__
-sequences (see __intrinsics__). That way, we can have 2-way adaptation to
-and from __mpl__ and Fusion].
+they will be regarded as first-class, fully conforming fusion sequences.
Fusion also provides various schemes to make it easy for the user to adapt
various data structures, non-intrusively, as full fledged Fusion sequences.
@@ -24,6 +21,19 @@ various data structures, non-intrusively, as full fledged Fusion sequences.
#include
Fusion also provides various schemes to make it easy for the user to adapt various data structures, non-intrusively, as full fledged Fusion sequences.
#include <boost/fusion/adapted.hpp> #include <boost/fusion/include/adapted.hpp>-
[13] - Fusion sequences may also be adapted as fully conforming MPL - sequences (see Intrinsics). - That way, we can have 2-way adaptation to and from MPL - and Fusion -
+ Fusion sequences may also be adapted as fully conforming MPL + sequences (see Intrinsics). + That way, we can have 2-way adaptation to and from MPL + and Fusion. To make Fusion sequences fully conforming MPL + sequences, include: +
++#include <boost/fusion/mpl.hpp> ++
+ If you want bi-directional adaptation to and from MPL + and Fusion, simply include: +
++#include <boost/fusion/include/mpl.hpp> ++
+ The header includes all the necessary headers. +
diff --git a/doc/html/fusion/adapted/adapt_assoc.html b/doc/html/fusion/adapted/adapt_assoc.html index a493a623..be8d2e5c 100644 --- a/doc/html/fusion/adapted/adapt_assoc.html +++ b/doc/html/fusion/adapted/adapt_assoc.html @@ -26,7 +26,7 @@ |
diff --git a/doc/html/fusion/algorithm/transformation/functions/clear.html b/doc/html/fusion/algorithm/transformation/functions/clear.html index 7d4eaefa..bf7a9ef2 100644 --- a/doc/html/fusion/algorithm/transformation/functions/clear.html +++ b/doc/html/fusion/algorithm/transformation/functions/clear.html @@ -26,14 +26,14 @@- + Description
clear returns an empty sequence.
- + Synposis
@@ -43,7 +43,7 @@ typename result_of::clear<Sequence const>::type clear(Sequence const& seq);- + Expression Semantics
@@ -106,14 +106,14 @@ with no elements.- + Complexity
Constant.
- + Header
@@ -121,7 +121,7 @@ #include <boost/fusion/include/clear.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/erase.html b/doc/html/fusion/algorithm/transformation/functions/erase.html index fc564b0d..b8fae8b4 100644 --- a/doc/html/fusion/algorithm/transformation/functions/erase.html +++ b/doc/html/fusion/algorithm/transformation/functions/erase.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ those at a specified iterator, or between two iterators.
- + Synposis
@@ -54,7 +54,7 @@ Sequence const& seq, First const& it1, Last const& it2);- + Expression Semantics
@@ -172,14 +172,14 @@ in their original order, except those in the range [first,last).- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -187,7 +187,7 @@ #include <boost/fusion/include/erase.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/erase_key.html b/doc/html/fusion/algorithm/transformation/functions/erase_key.html index b7e1f17f..fb175e6a 100644 --- a/doc/html/fusion/algorithm/transformation/functions/erase_key.html +++ b/doc/html/fusion/algorithm/transformation/functions/erase_key.html @@ -26,7 +26,7 @@- + Description
@@ -39,7 +39,7 @@ with a given key.
- + Synposis
@@ -50,7 +50,7 @@ typename result_of::erase_key<Sequence const, Key>::type erase_key(Sequence const& seq);- + Expression Semantics
@@ -133,14 +133,14 @@ except those with key Key.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -148,7 +148,7 @@ #include <boost/fusion/include/erase_key.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/filter.html b/doc/html/fusion/algorithm/transformation/functions/filter.html index dd8c1e77..9853c852 100644 --- a/doc/html/fusion/algorithm/transformation/functions/filter.html +++ b/doc/html/fusion/algorithm/transformation/functions/filter.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ the elements of a specified type.
- + Synopsis
@@ -45,7 +45,7 @@ typename result_of::filter<Sequence const, T>::type filter(Sequence const& seq);- + Expression Semantics
@@ -129,14 +129,14 @@ to filter_if<boost::same_type<_, T> >(seq).- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -144,7 +144,7 @@ #include <boost/fusion/include/filter.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/filter_if.html b/doc/html/fusion/algorithm/transformation/functions/filter_if.html index 73e21b29..7cc27e70 100644 --- a/doc/html/fusion/algorithm/transformation/functions/filter_if.html +++ b/doc/html/fusion/algorithm/transformation/functions/filter_if.html @@ -26,7 +26,7 @@- + Description
@@ -35,7 +35,7 @@ Lambda Expression evaluates to boost::mpl::true_.
- + Synopsis
@@ -46,7 +46,7 @@ typename result_of::filter_if<Sequence const, Pred>::type filter_if(Sequence const& seq);- + Expression Semantics
@@ -132,14 +132,14 @@ is the same as in the original sequence.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -147,7 +147,7 @@ #include <boost/fusion/include/filter_if.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/insert.html b/doc/html/fusion/algorithm/transformation/functions/insert.html index e6e1d930..4c760f78 100644 --- a/doc/html/fusion/algorithm/transformation/functions/insert.html +++ b/doc/html/fusion/algorithm/transformation/functions/insert.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ element inserted the position described by a given iterator.
- + Synposis
@@ -46,7 +46,7 @@ unspecified insert(Sequence const& seq, Pos const& pos, T const& t);- + Expression Semantics
@@ -150,14 +150,14 @@ pos.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -165,7 +165,7 @@ #include <boost/fusion/include/insert.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/insert_range.html b/doc/html/fusion/algorithm/transformation/functions/insert_range.html index 48672611..fad935dd 100644 --- a/doc/html/fusion/algorithm/transformation/functions/insert_range.html +++ b/doc/html/fusion/algorithm/transformation/functions/insert_range.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ iterator.
- + Synposis
@@ -47,7 +47,7 @@ Sequence const& seq, Pos const& pos, Range const& range);- + Expression Semantics
@@ -153,14 +153,14 @@ All elements retaining their ordering from the orignal sequences.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -168,7 +168,7 @@ #include <boost/fusion/include/insert_range.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/join.html b/doc/html/fusion/algorithm/transformation/functions/join.html index 3f6f9b2f..23059311 100644 --- a/doc/html/fusion/algorithm/transformation/functions/join.html +++ b/doc/html/fusion/algorithm/transformation/functions/join.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ first followed by the elements of the second.
- + Synopsis
@@ -44,7 +44,7 @@ typename result_of::join<LhSequence, RhSequence>::type join(LhSequence const& lhs, RhSequence const& rhs);- + Expression Semantics
@@ -130,14 +130,14 @@ The order of th elements is preserved.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -145,7 +145,7 @@ #include <boost/fusion/include/join.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/pop_back.html b/doc/html/fusion/algorithm/transformation/functions/pop_back.html index c99c556a..93d6c7db 100644 --- a/doc/html/fusion/algorithm/transformation/functions/pop_back.html +++ b/doc/html/fusion/algorithm/transformation/functions/pop_back.html @@ -26,14 +26,14 @@- + Description
Returns a new sequence, with the last element of the original removed.
- + Synopsis
@@ -43,7 +43,7 @@ typename result_of::pop_back<Sequence const>::type pop_back(Sequence const& seq);- + Expression Semantics
@@ -108,14 +108,14 @@ same order as they were in seq.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -123,7 +123,7 @@ #include <boost/fusion/include/pop_back.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/pop_front.html b/doc/html/fusion/algorithm/transformation/functions/pop_front.html index 9d1ffdce..250d2106 100644 --- a/doc/html/fusion/algorithm/transformation/functions/pop_front.html +++ b/doc/html/fusion/algorithm/transformation/functions/pop_front.html @@ -26,14 +26,14 @@- + Description
Returns a new sequence, with the first element of the original removed.
- + Synopsis
@@ -43,7 +43,7 @@ typename result_of::pop_front<Sequence const>::type pop_front(Sequence const& seq);- + Expression Semantics
@@ -108,14 +108,14 @@ same order as they were in seq.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -123,7 +123,7 @@ #include <boost/fusion/include/pop_front.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/push_back.html b/doc/html/fusion/algorithm/transformation/functions/push_back.html index ed0b97db..c7eb51b8 100644 --- a/doc/html/fusion/algorithm/transformation/functions/push_back.html +++ b/doc/html/fusion/algorithm/transformation/functions/push_back.html @@ -26,14 +26,14 @@- + Description
Returns a new sequence with an element added at the end.
- + Synopsis
@@ -45,7 +45,7 @@ Sequence const& seq, T const& t);- + Expression Semantics
@@ -129,14 +129,14 @@ to the end. The elements are in the same order as they were in seq.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -144,7 +144,7 @@ #include <boost/fusion/include/push_back.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/push_front.html b/doc/html/fusion/algorithm/transformation/functions/push_front.html index 206498dc..5efd05aa 100644 --- a/doc/html/fusion/algorithm/transformation/functions/push_front.html +++ b/doc/html/fusion/algorithm/transformation/functions/push_front.html @@ -26,14 +26,14 @@- + Description
Returns a new sequence with an element added at the beginning.
- + Synopsis
@@ -45,7 +45,7 @@ Sequence const& seq, T const& t);- + Expression Semantics
@@ -130,14 +130,14 @@ seq.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -145,7 +145,7 @@ #include <boost/fusion/include/push_front.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/remove.html b/doc/html/fusion/algorithm/transformation/functions/remove.html index 1e50bd19..bc162419 100644 --- a/doc/html/fusion/algorithm/transformation/functions/remove.html +++ b/doc/html/fusion/algorithm/transformation/functions/remove.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ except those of a given type.
- + Synopsis
@@ -45,7 +45,7 @@ typename result_of::remove<Sequence const, T>::type replace(Sequence const& seq);- + Expression Semantics
@@ -129,14 +129,14 @@ Equivalent to remove_if<boost::is_same<_,T> >(seq).- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -144,7 +144,7 @@ #include <boost/fusion/include/remove.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/remove_if.html b/doc/html/fusion/algorithm/transformation/functions/remove_if.html index 08d882ba..551b4114 100644 --- a/doc/html/fusion/algorithm/transformation/functions/remove_if.html +++ b/doc/html/fusion/algorithm/transformation/functions/remove_if.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ those where a given unary function object evaluates to true.
- + Synopsis
@@ -45,7 +45,7 @@ typename result_of::remove_if<Sequence const, Pred>::type remove_if(Sequence const& seq);- + Expression Semantics
@@ -131,14 +131,14 @@ >(seq).- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -146,7 +146,7 @@ #include <boost/fusion/include/remove_if.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/replace.html b/doc/html/fusion/algorithm/transformation/functions/replace.html index 5177aa39..a81433e6 100644 --- a/doc/html/fusion/algorithm/transformation/functions/replace.html +++ b/doc/html/fusion/algorithm/transformation/functions/replace.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ a new value.
- + Synopsis
@@ -46,7 +46,7 @@ Sequence const& seq, T const& old_value, T const& new_value);- + Expression Semantics
@@ -151,14 +151,14 @@ to elements with the same type and equal to old_value.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -166,7 +166,7 @@ #include <boost/fusion/include/replace.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/replace_if.html b/doc/html/fusion/algorithm/transformation/functions/replace_if.html index 9b17e4d3..4a076daa 100644 --- a/doc/html/fusion/algorithm/transformation/functions/replace_if.html +++ b/doc/html/fusion/algorithm/transformation/functions/replace_if.html @@ -26,7 +26,7 @@- + Description
@@ -35,7 +35,7 @@ replaced with a new value.
- + Synopsis
@@ -47,7 +47,7 @@ Sequence const& seq, F f, T const& new_value);- + Expression Semantics
@@ -151,14 +151,14 @@ evaluates to true.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -166,7 +166,7 @@ #include <boost/fusion/include/replace_if.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/reverse.html b/doc/html/fusion/algorithm/transformation/functions/reverse.html index b62baa9c..3bb81b5a 100644 --- a/doc/html/fusion/algorithm/transformation/functions/reverse.html +++ b/doc/html/fusion/algorithm/transformation/functions/reverse.html @@ -26,14 +26,14 @@- + Description
Returns a new sequence with the elements of the original in reverse order.
- + Synposis
@@ -43,7 +43,7 @@ typename result_of::reverse<Sequence const>::type reverse(Sequence const& seq);- + Expression Semantics
@@ -107,14 +107,14 @@ in reverse order.- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -122,7 +122,7 @@ #include <boost/fusion/include/reverse.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/transform.html b/doc/html/fusion/algorithm/transformation/functions/transform.html index 5c20d767..7549429a 100644 --- a/doc/html/fusion/algorithm/transformation/functions/transform.html +++ b/doc/html/fusion/algorithm/transformation/functions/transform.html @@ -26,7 +26,7 @@- + Description
@@ -37,7 +37,7 @@ of seq.
- + Unary version synopsis
@@ -50,7 +50,7 @@ Sequence const& seq, F f);- + Expression Semantics
@@ -136,7 +136,7 @@ within seq.- + Binary version synopsis
@@ -150,7 +150,7 @@ Sequence1 const& seq1, Sequence2 const& seq2, F f);-Table 1.56. Parameters
+Table 1.56. Parameters
@@ -248,14 +248,14 @@ within seq1 and seq2 respectively. - + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -263,7 +263,7 @@ #include <boost/fusion/include/transform.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/functions/zip.html b/doc/html/fusion/algorithm/transformation/functions/zip.html index 51e410c1..faf42aa8 100644 --- a/doc/html/fusion/algorithm/transformation/functions/zip.html +++ b/doc/html/fusion/algorithm/transformation/functions/zip.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ of the members of the component sequences.
- + Synopsis
@@ -48,7 +48,7 @@ zip(Sequence1 const& seq1, Sequence2 const& seq2, ... SequenceN const& seqN);- + Expression Semantics
@@ -117,14 +117,14 @@ 'c'))- + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -132,7 +132,7 @@ #include <boost/fusion/include/zip.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/clear.html b/doc/html/fusion/algorithm/transformation/metafunctions/clear.html index 0f20d273..2025ac99 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/clear.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/clear.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ type.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -107,14 +107,14 @@ Semantics: Returns an empty sequence.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/erase.html b/doc/html/fusion/algorithm/transformation/metafunctions/erase.html index f9ec70c7..87276b98 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/erase.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/erase.html @@ -30,11 +30,11 @@ and range delimiting iterator types.- + Description
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -164,14 +164,14 @@ and It2 removed.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/erase_key.html b/doc/html/fusion/algorithm/transformation/metafunctions/erase_key.html index 26993697..ef1aa29d 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/erase_key.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/erase_key.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ and key types.
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -131,14 +131,14 @@ except those with key Key.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/filter.html b/doc/html/fusion/algorithm/transformation/metafunctions/filter.html index fcea7aaa..8c3e072c 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/filter.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/filter.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ and type to retain.
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -133,14 +133,14 @@ boost::is_same<mpl::_, T> >::type.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/filter_if.html b/doc/html/fusion/algorithm/transformation/metafunctions/filter_if.html index 83bf3891..6d935809 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/filter_if.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/filter_if.html @@ -26,7 +26,7 @@- + Description
@@ -35,7 +35,7 @@ Lambda Expression predicate type.
- + Synopsis
@@ -49,7 +49,7 @@ };
- + Expression Semantics
@@ -134,14 +134,14 @@ to boost::mpl::true_.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/insert.html b/doc/html/fusion/algorithm/transformation/metafunctions/insert.html index 14fbe3b8..e4e955de 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/insert.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/insert.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ position iterator and insertion types.
- + Synopsis
@@ -49,7 +49,7 @@ };
- + Expression Semantics
@@ -152,14 +152,14 @@ in Sequence.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/insert_range.html b/doc/html/fusion/algorithm/transformation/metafunctions/insert_range.html index a60f35eb..644427b8 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/insert_range.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/insert_range.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ sequence, position iterator and insertion range types.
- + Synopsis
@@ -49,7 +49,7 @@ };
- + Expression Semantics
@@ -154,14 +154,14 @@ into Sequence.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/join.html b/doc/html/fusion/algorithm/transformation/metafunctions/join.html index 9173e642..c9c48d30 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/join.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/join.html @@ -26,14 +26,14 @@- + Description
Returns the result of joining 2 sequences, given the sequence types.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -66,14 +66,14 @@ The order of the elements in the 2 sequences is preserved.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/pop_back.html b/doc/html/fusion/algorithm/transformation/metafunctions/pop_back.html index ca01df85..005d2114 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/pop_back.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/pop_back.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ type.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -111,14 +111,14 @@ except the last element.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/pop_front.html b/doc/html/fusion/algorithm/transformation/metafunctions/pop_front.html index 5a50183f..1903d17c 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/pop_front.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/pop_front.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ type.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -111,7 +111,7 @@ except the first element.- + Complexity
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/push_back.html b/doc/html/fusion/algorithm/transformation/metafunctions/push_back.html index 1b023f99..893f59a3 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/push_back.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/push_back.html @@ -26,7 +26,7 @@
- + Description
@@ -34,7 +34,7 @@ the input sequence and element to push.
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -132,7 +132,7 @@ added to the end.- + Complexity
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/push_front.html b/doc/html/fusion/algorithm/transformation/metafunctions/push_front.html index 1c88757e..6901f157 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/push_front.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/push_front.html @@ -26,7 +26,7 @@
- + Description
@@ -34,7 +34,7 @@ of the input sequence and element to push.
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -132,7 +132,7 @@ added to the beginning.- + Complexity
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/remove.html b/doc/html/fusion/algorithm/transformation/metafunctions/remove.html index 7fc0dee1..d6479d10 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/remove.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/remove.html @@ -26,7 +26,7 @@
- + Description
@@ -34,7 +34,7 @@ removal types.
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -133,14 +133,14 @@ boost::is_same<mpl::_, T> >::type.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/remove_if.html b/doc/html/fusion/algorithm/transformation/metafunctions/remove_if.html index 9db0fa3a..7d875fb1 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/remove_if.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/remove_if.html @@ -26,7 +26,7 @@- + Description
@@ -35,7 +35,7 @@ Lambda Expression predicate types.
- + Synopsis
@@ -49,7 +49,7 @@ };
- + Expression Semantics
@@ -134,14 +134,14 @@ to boost::mpl::false_.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/replace.html b/doc/html/fusion/algorithm/transformation/metafunctions/replace.html index c85fedea..8bad8199 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/replace.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/replace.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ the input sequence and element to replace.
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -130,14 +130,14 @@ replace.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/replace_if.html b/doc/html/fusion/algorithm/transformation/metafunctions/replace_if.html index 43f47086..3c7410e8 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/replace_if.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/replace_if.html @@ -26,7 +26,7 @@- + Description
@@ -36,7 +36,7 @@ Function Object predicate and replacement object.
- + Synopsis
@@ -50,7 +50,7 @@ };
- + Expression Semantics
@@ -151,14 +151,14 @@ replace_if.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/reverse.html b/doc/html/fusion/algorithm/transformation/metafunctions/reverse.html index 15f9a322..62837035 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/reverse.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/reverse.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ type.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -110,14 +110,14 @@ elements in the reverse order to Sequence.- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/transform.html b/doc/html/fusion/algorithm/transformation/metafunctions/transform.html index a32b3f08..196b8bd8 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/transform.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/transform.html @@ -26,7 +26,7 @@- + Description
@@ -37,7 +37,7 @@ of seq.
- + Unary version synopsis
@@ -50,7 +50,7 @@ Sequence const& seq, F f);- + Expression Semantics
@@ -136,7 +136,7 @@ within seq.- + Binary version synopsis
@@ -150,7 +150,7 @@ Sequence1 const& seq1, Sequence2 const& seq2, F f);-Table 1.76. Parameters
+Table 1.76. Parameters
@@ -248,14 +248,14 @@ within seq1 and seq2 respectively. - + Complexity
Constant. Returns a view which is lazily evaluated.
- + Header
@@ -263,7 +263,7 @@ #include <boost/fusion/include/transform.hpp>- + Example
diff --git a/doc/html/fusion/algorithm/transformation/metafunctions/zip.html b/doc/html/fusion/algorithm/transformation/metafunctions/zip.html index b2afedb4..375fad85 100644 --- a/doc/html/fusion/algorithm/transformation/metafunctions/zip.html +++ b/doc/html/fusion/algorithm/transformation/metafunctions/zip.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ of the members of the component sequences.
- + Synopsis
@@ -50,7 +50,7 @@ };
- + Expression Semantics
@@ -73,14 +73,14 @@ 'c'))- + Complexity
Constant.
- + Header
diff --git a/doc/html/fusion/container.html b/doc/html/fusion/container.html index b455c09e..54ab1ae2 100644 --- a/doc/html/fusion/container.html +++ b/doc/html/fusion/container.html @@ -49,7 +49,7 @@ These containers are more or less counterparts of those in STL.- + Header
diff --git a/doc/html/fusion/container/cons.html b/doc/html/fusion/container/cons.html index b35c6bdd..8c84b924 100644 --- a/doc/html/fusion/container/cons.html +++ b/doc/html/fusion/container/cons.html @@ -26,7 +26,7 @@- + Description
@@ -42,7 +42,7 @@ Inlined Functions).
- + Header
@@ -50,7 +50,7 @@ #include <boost/fusion/include/cons.hpp>- + Synopsis
@@ -58,7 +58,7 @@ struct cons;- + Template parameters
@@ -121,7 +121,7 @@
- + Model of
- + Expression Semantics
@@ -298,7 +298,7 @@ Inlined Functions).
- + Example
diff --git a/doc/html/fusion/container/conversion.html b/doc/html/fusion/container/conversion.html index 041b7cf5..4fab9f77 100644 --- a/doc/html/fusion/container/conversion.html +++ b/doc/html/fusion/container/conversion.html @@ -34,7 +34,7 @@ types using one of these conversion functions.- + Header
diff --git a/doc/html/fusion/container/conversion/functions/as_list.html b/doc/html/fusion/container/conversion/functions/as_list.html index bb49f15a..ae3ce029 100644 --- a/doc/html/fusion/container/conversion/functions/as_list.html +++ b/doc/html/fusion/container/conversion/functions/as_list.html @@ -26,14 +26,14 @@- + Description
Convert a fusion sequence to a list.
- + Synopsis
@@ -46,7 +46,7 @@ as_list(Sequence const& seq);- + Parameters
@@ -91,7 +91,7 @@
- + Expression Semantics
@@ -106,7 +106,7 @@ seq, to a list.- + Header
@@ -114,7 +114,7 @@ #include <boost/fusion/include/as_list.hpp>- + Example
diff --git a/doc/html/fusion/container/conversion/functions/as_map.html b/doc/html/fusion/container/conversion/functions/as_map.html index 5d60bbb4..c429f81c 100644 --- a/doc/html/fusion/container/conversion/functions/as_map.html +++ b/doc/html/fusion/container/conversion/functions/as_map.html @@ -26,14 +26,14 @@- + Description
Convert a fusion sequence to a map.
- + Synopsis
@@ -46,7 +46,7 @@ as_map(Sequence const& seq);- + Parameters
@@ -91,7 +91,7 @@
- + Expression Semantics
@@ -111,7 +111,7 @@ There may be no duplicate fusion::pair key types.- + Header
@@ -119,7 +119,7 @@ #include <boost/fusion/include/as_map.hpp>- + Example
diff --git a/doc/html/fusion/container/conversion/functions/as_set.html b/doc/html/fusion/container/conversion/functions/as_set.html index 07021f95..4d9630c3 100644 --- a/doc/html/fusion/container/conversion/functions/as_set.html +++ b/doc/html/fusion/container/conversion/functions/as_set.html @@ -26,14 +26,14 @@- + Description
Convert a fusion sequence to a set.
- + Synopsis
@@ -46,7 +46,7 @@ as_set(Sequence const& seq);- + Parameters
@@ -91,7 +91,7 @@
- + Expression Semantics
@@ -110,7 +110,7 @@ key types.- + Header
@@ -118,7 +118,7 @@ #include <boost/fusion/include/as_set.hpp>- + Example
diff --git a/doc/html/fusion/container/conversion/functions/as_vector.html b/doc/html/fusion/container/conversion/functions/as_vector.html index 67accc90..de568709 100644 --- a/doc/html/fusion/container/conversion/functions/as_vector.html +++ b/doc/html/fusion/container/conversion/functions/as_vector.html @@ -26,14 +26,14 @@- + Description
Convert a fusion sequence to a vector.
- + Synopsis
@@ -46,7 +46,7 @@ as_vector(Sequence const& seq);- + Parameters
@@ -91,7 +91,7 @@
- + Expression Semantics
@@ -106,7 +106,7 @@ seq, to a vector.- + Header
@@ -114,7 +114,7 @@ #include <boost/fusion/include/as_vector.hpp>- + Example
diff --git a/doc/html/fusion/container/conversion/metafunctions/as_list.html b/doc/html/fusion/container/conversion/metafunctions/as_list.html index ebb79585..5dec3fc8 100644 --- a/doc/html/fusion/container/conversion/metafunctions/as_list.html +++ b/doc/html/fusion/container/conversion/metafunctions/as_list.html @@ -26,14 +26,14 @@- + Description
Returns the result type of as_list.
- + Synopsis
@@ -41,7 +41,7 @@ struct as_list;- + Parameters
@@ -86,7 +86,7 @@
- + Expression Semantics
@@ -102,7 +102,7 @@ Sequence, to a list.- + Header
@@ -110,7 +110,7 @@ #include <boost/fusion/include/as_list.hpp>- + Example
diff --git a/doc/html/fusion/container/conversion/metafunctions/as_map.html b/doc/html/fusion/container/conversion/metafunctions/as_map.html index 030383ae..593c322b 100644 --- a/doc/html/fusion/container/conversion/metafunctions/as_map.html +++ b/doc/html/fusion/container/conversion/metafunctions/as_map.html @@ -26,14 +26,14 @@- + Description
Returns the result type of as_map.
- + Synopsis
@@ -41,7 +41,7 @@ struct as_map;- + Parameters
@@ -86,7 +86,7 @@
- + Expression Semantics
@@ -107,7 +107,7 @@ There may be no duplicate fusion::pair key types.- + Header
@@ -115,7 +115,7 @@ #include <boost/fusion/include/as_map.hpp>- + Example
diff --git a/doc/html/fusion/container/conversion/metafunctions/as_set.html b/doc/html/fusion/container/conversion/metafunctions/as_set.html index 06961ca2..2969295d 100644 --- a/doc/html/fusion/container/conversion/metafunctions/as_set.html +++ b/doc/html/fusion/container/conversion/metafunctions/as_set.html @@ -26,14 +26,14 @@- + Description
Returns the result type of as_set.
- + Synopsis
@@ -41,7 +41,7 @@ struct as_set;- + Parameters
@@ -86,7 +86,7 @@
- + Expression Semantics
@@ -106,7 +106,7 @@ key types.- + Header
@@ -114,7 +114,7 @@ #include <boost/fusion/include/as_set.hpp>- + Example
diff --git a/doc/html/fusion/container/conversion/metafunctions/as_vector.html b/doc/html/fusion/container/conversion/metafunctions/as_vector.html index f97426a0..5b821dc4 100644 --- a/doc/html/fusion/container/conversion/metafunctions/as_vector.html +++ b/doc/html/fusion/container/conversion/metafunctions/as_vector.html @@ -26,14 +26,14 @@- + Description
Returns the result type of as_vector.
- + Synopsis
@@ -41,7 +41,7 @@ struct as_vector;- + Parameters
@@ -86,7 +86,7 @@
- + Expression Semantics
@@ -102,7 +102,7 @@ Sequence, to a vector.- + Header
@@ -110,7 +110,7 @@ #include <boost/fusion/include/as_vector.hpp>- + Example
diff --git a/doc/html/fusion/container/generation.html b/doc/html/fusion/container/generation.html index 596b8880..eaaf0b44 100644 --- a/doc/html/fusion/container/generation.html +++ b/doc/html/fusion/container/generation.html @@ -33,7 +33,7 @@ These are the functions that you can use to generate various forms of Container from elemental values.- + Header
diff --git a/doc/html/fusion/container/generation/functions/list_tie.html b/doc/html/fusion/container/generation/functions/list_tie.html index b565b917..bfbc7546 100644 --- a/doc/html/fusion/container/generation/functions/list_tie.html +++ b/doc/html/fusion/container/generation/functions/list_tie.html @@ -26,14 +26,14 @@- + Description
Constructs a tie using a list sequence.
- + Synopsis
@@ -53,7 +53,7 @@ #define FUSION_MAX_LIST_SIZE 20- + Parameters
@@ -100,7 +100,7 @@
- + Expression Semantics
@@ -115,7 +115,7 @@ Semantics: Create a list of references from x0, x1,... xN.- + Header
@@ -123,7 +123,7 @@ #include <boost/fusion/include/list_tie.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/functions/make_cons.html b/doc/html/fusion/container/generation/functions/make_cons.html index 4fd1b202..e602212d 100644 --- a/doc/html/fusion/container/generation/functions/make_cons.html +++ b/doc/html/fusion/container/generation/functions/make_cons.html @@ -26,7 +26,7 @@- + Description
@@ -35,7 +35,7 @@ and optional cdr (tail).
- + Synopsis
@@ -48,7 +48,7 @@ make_cons(Car const& car, Cdr const& cdr);- + Parameters
@@ -112,7 +112,7 @@
- + Expression Semantics
@@ -128,7 +128,7 @@ (tail).- + Header
@@ -136,14 +136,14 @@ #include <boost/fusion/include/make_cons.hpp>- + Example
make_cons('x', make_cons(123))- + See also
diff --git a/doc/html/fusion/container/generation/functions/make_list.html b/doc/html/fusion/container/generation/functions/make_list.html index d535aaf8..fb1d5e38 100644 --- a/doc/html/fusion/container/generation/functions/make_list.html +++ b/doc/html/fusion/container/generation/functions/make_list.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ from one or more values.
- + Synopsis
@@ -54,7 +54,7 @@ #define FUSION_MAX_LIST_SIZE 20- + Parameters
@@ -101,7 +101,7 @@
- + Expression Semantics
@@ -115,7 +115,7 @@ Semantics: Create a list from x0, x1,... xN.- + Header
@@ -123,14 +123,14 @@ #include <boost/fusion/include/make_list.hpp>- + Example
make_list(123, "hello", 12.5)- + See also
diff --git a/doc/html/fusion/container/generation/functions/make_map.html b/doc/html/fusion/container/generation/functions/make_map.html index 1ae59169..d250801b 100644 --- a/doc/html/fusion/container/generation/functions/make_map.html +++ b/doc/html/fusion/container/generation/functions/make_map.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ from one or more key/data pairs.
- + Synopsis
@@ -47,7 +47,7 @@The variadic function accepts 0 to FUSION_MAX_VECTOR_SIZE - [9] + [10] elements, where FUSION_MAX_VECTOR_SIZE is a user definable predefined maximum that defaults to 10. You may define the preprocessor constant FUSION_MAX_VECTOR_SIZE @@ -57,7 +57,7 @@ #define FUSION_MAX_VECTOR_SIZE 20
- + Parameters
@@ -125,7 +125,7 @@
- + Expression Semantics
@@ -146,7 +146,7 @@ key types.- + Header
@@ -154,7 +154,7 @@ #include <boost/fusion/include/make_map.hpp>- + Example
@@ -163,7 +163,7 @@ , make_pair<double>("Men"))- + See also
@@ -173,7 +173,7 @@
-[9] +
diff --git a/doc/html/fusion/container/generation/functions/make_set.html b/doc/html/fusion/container/generation/functions/make_set.html index f0a975f4..287038e8 100644 --- a/doc/html/fusion/container/generation/functions/make_set.html +++ b/doc/html/fusion/container/generation/functions/make_set.html @@ -26,7 +26,7 @@[10] map is implemented in terms of the vector. That is why we reuse FUSION_MAX_VECTOR_SIZE
- + Description
@@ -34,7 +34,7 @@ from one or more values.
- + Synopsis
@@ -45,7 +45,7 @@The variadic function accepts 0 to FUSION_MAX_VECTOR_SIZE - [8] + [9] elements, where FUSION_MAX_VECTOR_SIZE is a user definable predefined maximum that defaults to 10. You may define the preprocessor constant FUSION_MAX_VECTOR_SIZE @@ -55,7 +55,7 @@ #define FUSION_MAX_VECTOR_SIZE 20
- + Parameters
@@ -102,7 +102,7 @@
- + Expression Semantics
@@ -120,7 +120,7 @@ key types.- + Header
@@ -128,14 +128,14 @@ #include <boost/fusion/include/make_set.hpp>- + Example
make_set(123, "hello", 12.5)- + See also
@@ -144,7 +144,7 @@
-[8] +
diff --git a/doc/html/fusion/container/generation/functions/make_vector.html b/doc/html/fusion/container/generation/functions/make_vector.html index b72eb17b..f2dfe63d 100644 --- a/doc/html/fusion/container/generation/functions/make_vector.html +++ b/doc/html/fusion/container/generation/functions/make_vector.html @@ -26,7 +26,7 @@[9] set is implemented in terms of the vector. That is why we reuse FUSION_MAX_VECTOR_SIZE
- + Description
@@ -34,7 +34,7 @@ from one or more values.
- + Synopsis
@@ -54,7 +54,7 @@ #define FUSION_MAX_VECTOR_SIZE 20- + Parameters
@@ -101,7 +101,7 @@
- + Expression Semantics
@@ -115,7 +115,7 @@ Semantics: Create a vector from x0, x1,... xN.- + Header
@@ -123,14 +123,14 @@ #include <boost/fusion/include/make_vector.hpp>- + Example
make_vector(123, "hello", 12.5)- + See also
diff --git a/doc/html/fusion/container/generation/functions/map_tie.html b/doc/html/fusion/container/generation/functions/map_tie.html index d43fcf0b..72571e0d 100644 --- a/doc/html/fusion/container/generation/functions/map_tie.html +++ b/doc/html/fusion/container/generation/functions/map_tie.html @@ -26,14 +26,14 @@- + Description
Constructs a tie using a map sequence.
- + Synopsis
@@ -53,7 +53,7 @@ #define FUSION_MAX_MAP_SIZE 20- + Parameters
@@ -122,7 +122,7 @@
- + Expression Semantics
@@ -138,7 +138,7 @@ Semantics: Create a map of references from x0, x1,... xN with keys K0, K1,... KN- + Header
@@ -146,7 +146,7 @@ #include <boost/fusion/include/map_tie.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/functions/tiers.html b/doc/html/fusion/container/generation/functions/tiers.html index 3512765c..08022439 100644 --- a/doc/html/fusion/container/generation/functions/tiers.html +++ b/doc/html/fusion/container/generation/functions/tiers.html @@ -49,7 +49,7 @@ a vector of type vector<int&, char&, double&>. The same result could be achieved with the call make_vector(ref(i), ref(c), ref(a)) - [10] + [11] .@@ -67,7 +67,7 @@ when calling functions which return sequences.
- + Ignore
@@ -82,7 +82,7 @@
-[10] +
diff --git a/doc/html/fusion/container/generation/functions/vector_tie.html b/doc/html/fusion/container/generation/functions/vector_tie.html index 08e79b99..372dcb14 100644 --- a/doc/html/fusion/container/generation/functions/vector_tie.html +++ b/doc/html/fusion/container/generation/functions/vector_tie.html @@ -26,14 +26,14 @@- + Description
Constructs a tie using a vector sequence.
- + Synopsis
@@ -53,7 +53,7 @@ #define FUSION_MAX_VECTOR_SIZE 20- + Parameters
@@ -100,7 +100,7 @@
- + Expression Semantics
@@ -115,7 +115,7 @@ Semantics: Create a vector of references from x0, x1,... xN.- + Header
@@ -123,7 +123,7 @@ #include <boost/fusion/include/vector_tie.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/metafunctions/list_tie.html b/doc/html/fusion/container/generation/metafunctions/list_tie.html index 0c61de79..9cf228c2 100644 --- a/doc/html/fusion/container/generation/metafunctions/list_tie.html +++ b/doc/html/fusion/container/generation/metafunctions/list_tie.html @@ -26,14 +26,14 @@- + Description
Returns the result type of list_tie.
- + Synopsis
@@ -52,7 +52,7 @@ #define FUSION_MAX_LIST_SIZE 20- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -114,7 +114,7 @@ Semantics: Create a list of references from T0, T1,... TN.- + Header
@@ -122,7 +122,7 @@ #include <boost/fusion/include/list_tie.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/metafunctions/make_cons.html b/doc/html/fusion/container/generation/metafunctions/make_cons.html index d554649c..9161b76e 100644 --- a/doc/html/fusion/container/generation/metafunctions/make_cons.html +++ b/doc/html/fusion/container/generation/metafunctions/make_cons.html @@ -26,14 +26,14 @@- + Description
Returns the result type of make_cons.
- + Synopsis
@@ -41,7 +41,7 @@ struct make_cons;- + Parameters
@@ -105,7 +105,7 @@
- + Expression Semantics
@@ -123,7 +123,7 @@ (tail).- + Header
@@ -131,7 +131,7 @@ #include <boost/fusion/include/make_cons.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/metafunctions/make_list.html b/doc/html/fusion/container/generation/metafunctions/make_list.html index b1d5fe0f..217f1103 100644 --- a/doc/html/fusion/container/generation/metafunctions/make_list.html +++ b/doc/html/fusion/container/generation/metafunctions/make_list.html @@ -26,14 +26,14 @@- + Description
Returns the result type of make_list.
- + Synopsis
@@ -52,7 +52,7 @@ #define FUSION_MAX_LIST_SIZE 20- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -115,7 +115,7 @@ Semantics: Create a list from T0, T1,... TN.- + Header
@@ -123,7 +123,7 @@ #include <boost/fusion/include/make_list.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/metafunctions/make_map.html b/doc/html/fusion/container/generation/metafunctions/make_map.html index 36334852..92eb4427 100644 --- a/doc/html/fusion/container/generation/metafunctions/make_map.html +++ b/doc/html/fusion/container/generation/metafunctions/make_map.html @@ -26,14 +26,14 @@- + Description
Returns the result type of make_map.
- + Synopsis
@@ -45,7 +45,7 @@The variadic function accepts 0 to FUSION_MAX_VECTOR_SIZE - [12] + [13] elements, where FUSION_MAX_VECTOR_SIZE is a user definable predefined maximum that defaults to 10. You may define the preprocessor constant FUSION_MAX_VECTOR_SIZE @@ -55,7 +55,7 @@ #define FUSION_MAX_VECTOR_SIZE 20
- + Parameters
@@ -123,7 +123,7 @@
- + Expression Semantics
@@ -143,7 +143,7 @@ key types.- + Header
@@ -151,14 +151,14 @@ #include <boost/fusion/include/make_map.hpp>- + Example
result_of::make_map<int, double, char, double>::type- + See also
@@ -167,7 +167,7 @@
-[12] +
diff --git a/doc/html/fusion/container/generation/metafunctions/make_set.html b/doc/html/fusion/container/generation/metafunctions/make_set.html index 19a63d3e..2e2fc32f 100644 --- a/doc/html/fusion/container/generation/metafunctions/make_set.html +++ b/doc/html/fusion/container/generation/metafunctions/make_set.html @@ -26,14 +26,14 @@[13] map is implemented in terms of the vector. That is why we reuse FUSION_MAX_VECTOR_SIZE
- + Description
Returns the result type of make_set.
- + Synopsis
@@ -43,7 +43,7 @@The variadic function accepts 0 to FUSION_MAX_VECTOR_SIZE - [11] + [12] elements, where FUSION_MAX_VECTOR_SIZE is a user definable predefined maximum that defaults to 10. You may define the preprocessor constant FUSION_MAX_VECTOR_SIZE @@ -53,7 +53,7 @@ #define FUSION_MAX_VECTOR_SIZE 20
- + Parameters
@@ -100,7 +100,7 @@
- + Expression Semantics
@@ -120,7 +120,7 @@ key types.- + Header
@@ -128,7 +128,7 @@ #include <boost/fusion/include/make_set.hpp>- + Example
@@ -136,7 +136,7 @@
-[11] +
diff --git a/doc/html/fusion/container/generation/metafunctions/make_vector.html b/doc/html/fusion/container/generation/metafunctions/make_vector.html index 04fb849a..a8085b13 100644 --- a/doc/html/fusion/container/generation/metafunctions/make_vector.html +++ b/doc/html/fusion/container/generation/metafunctions/make_vector.html @@ -26,14 +26,14 @@[12] set is implemented in terms of the vector. That is why we reuse FUSION_MAX_VECTOR_SIZE
- + Description
Returns the result type of make_vector.
- + Synopsis
@@ -52,7 +52,7 @@ #define FUSION_MAX_VECTOR_SIZE 20- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -115,7 +115,7 @@ Semantics: Create a vector from T0, T1,... TN.- + Header
@@ -123,7 +123,7 @@ #include <boost/fusion/include/make_list.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/metafunctions/map_tie.html b/doc/html/fusion/container/generation/metafunctions/map_tie.html index 2c244ad9..252b1033 100644 --- a/doc/html/fusion/container/generation/metafunctions/map_tie.html +++ b/doc/html/fusion/container/generation/metafunctions/map_tie.html @@ -26,14 +26,14 @@- + Description
Returns the result type of map_tie.
- + Synopsis
@@ -52,7 +52,7 @@ #define FUSION_MAX_MAP_SIZE 20- + Parameters
@@ -120,7 +120,7 @@
- + Expression Semantics
@@ -136,7 +136,7 @@ Semantics: Create a map of references from D0, D1,... DN with keys K0, K1,... KN- + Header
@@ -144,7 +144,7 @@ #include <boost/fusion/include/map_tie.hpp>- + Example
diff --git a/doc/html/fusion/container/generation/metafunctions/vector_tie.html b/doc/html/fusion/container/generation/metafunctions/vector_tie.html index ca5220d6..54518d44 100644 --- a/doc/html/fusion/container/generation/metafunctions/vector_tie.html +++ b/doc/html/fusion/container/generation/metafunctions/vector_tie.html @@ -26,14 +26,14 @@- + Description
Returns the result type of vector_tie.
- + Synopsis
@@ -52,7 +52,7 @@ #define FUSION_MAX_VECTOR_SIZE 20- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -114,7 +114,7 @@ Semantics: Create a vector of references from T0, T1,... TN.- + Header
@@ -122,7 +122,7 @@ #include <boost/fusion/include/vector_tie.hpp>- + Example
diff --git a/doc/html/fusion/container/list.html b/doc/html/fusion/container/list.html index 19b1480b..27ae887c 100644 --- a/doc/html/fusion/container/list.html +++ b/doc/html/fusion/container/list.html @@ -26,7 +26,7 @@- + Description
@@ -38,7 +38,7 @@ runtime cost of access to each element is peculiarly constant (see Recursive Inlined Functions).
- + Header
@@ -48,7 +48,7 @@ #include <boost/fusion/include/list_fwd.hpp>- + Synopsis
@@ -79,7 +79,7 @@ #define FUSION_MAX_LIST_SIZE 20- + Template parameters
@@ -124,7 +124,7 @@
- + Model of
- + Expression Semantics
@@ -265,7 +265,7 @@ Inlined Functions).
- + Example
diff --git a/doc/html/fusion/container/map.html b/doc/html/fusion/container/map.html index 96cfb7ea..281e5a89 100644 --- a/doc/html/fusion/container/map.html +++ b/doc/html/fusion/container/map.html @@ -26,7 +26,7 @@- + Description
@@ -40,7 +40,7 @@ (see Overloaded Functions).
- + Header
@@ -50,7 +50,7 @@ #include <boost/fusion/include/map_fwd.hpp>- + Synopsis
@@ -81,7 +81,7 @@ #define FUSION_MAX_MAP_SIZE 20- + Template parameters
@@ -126,7 +126,7 @@
- + Model of
@@ -159,7 +159,7 @@
- + Expression Semantics
@@ -246,7 +246,7 @@
- + Example
diff --git a/doc/html/fusion/container/set.html b/doc/html/fusion/container/set.html index 7f1a72d1..e07ebd46 100644 --- a/doc/html/fusion/container/set.html +++ b/doc/html/fusion/container/set.html @@ -26,7 +26,7 @@- + Description
@@ -39,7 +39,7 @@ Functions).
- + Header
@@ -49,7 +49,7 @@ #include <boost/fusion/include/set_fwd.hpp>- + Synopsis
@@ -80,7 +80,7 @@ #define FUSION_MAX_SET_SIZE 20- + Template parameters
@@ -125,7 +125,7 @@
- + Model of
@@ -158,7 +158,7 @@
- + Expression Semantics
@@ -245,7 +245,7 @@
- + Example
diff --git a/doc/html/fusion/container/vector.html b/doc/html/fusion/container/vector.html index 8a25e2bf..77fc6c3b 100644 --- a/doc/html/fusion/container/vector.html +++ b/doc/html/fusion/container/vector.html @@ -26,7 +26,7 @@- + Description
@@ -39,7 +39,7 @@ efficient.
- + Header
@@ -61,7 +61,7 @@ #include <boost/fusion/include/vector50.hpp>- + Synopsis
@@ -122,7 +122,7 @@ #define FUSION_MAX_VECTOR_SIZE 20
- + Template parameters
@@ -167,7 +167,7 @@
- + Model of
- + Expression Semantics
@@ -281,7 +281,7 @@
- + Example
diff --git a/doc/html/fusion/extension/ext_full.html b/doc/html/fusion/extension/ext_full.html index 256c5dd8..892225d1 100644 --- a/doc/html/fusion/extension/ext_full.html +++ b/doc/html/fusion/extension/ext_full.html @@ -48,7 +48,7 @@- + Our example
@@ -80,7 +80,7 @@ Start guide.
- + Enabling Tag Dispatching
@@ -124,7 +124,7 @@ #include <boost/fusion/include/tag_of.hpp>- + Designing a suitable iterator
@@ -187,7 +187,7 @@ clearer as we add features to our implementation.- + A first couple of instructive features
@@ -331,7 +331,7 @@- + Implementing the remaining iterator functionality
@@ -386,7 +386,7 @@ are provided in the example code.- + Implementing the intrinsic functions of the sequence
@@ -445,7 +445,7 @@ value_at_impl and at_impl.- + Enabling our type as an associative container
@@ -513,7 +513,7 @@ of is_associative_impl.- + Summary
diff --git a/doc/html/fusion/extension/iterator_facade.html b/doc/html/fusion/extension/iterator_facade.html index b8e83611..bf879e9a 100644 --- a/doc/html/fusion/extension/iterator_facade.html +++ b/doc/html/fusion/extension/iterator_facade.html @@ -26,7 +26,7 @@
- + Description
@@ -35,7 +35,7 @@ iterator.
- + Synopsis
@@ -43,7 +43,7 @@ struct iterator_facade;- + Usage
@@ -57,7 +57,7 @@ type.
- + Header
@@ -373,7 +373,7 @@ #include <boost/fusion/include/iterator_facade.hpp>- + Example
diff --git a/doc/html/fusion/extension/sequence_facade.html b/doc/html/fusion/extension/sequence_facade.html index 23ca8adc..b94329ea 100644 --- a/doc/html/fusion/extension/sequence_facade.html +++ b/doc/html/fusion/extension/sequence_facade.html @@ -26,7 +26,7 @@
- + Description
@@ -35,7 +35,7 @@ iterator.
- + Synopsis
@@ -43,7 +43,7 @@ struct sequence_facade;- + Usage
@@ -59,7 +59,7 @@ type.
- + Include
@@ -251,7 +251,7 @@ #include <boost/fusion/include/sequence_facade.hpp>- + Example
diff --git a/doc/html/fusion/functional.html b/doc/html/fusion/functional.html index 256cc8f7..d86c2f00 100644 --- a/doc/html/fusion/functional.html +++ b/doc/html/fusion/functional.html @@ -65,7 +65,7 @@ /functional.hpp>
- + Fused and unfused forms
@@ -102,7 +102,7 @@ form of f'.- + Calling functions and function objects
@@ -130,7 +130,7 @@ instance for the given argument.- + Making Fusion code callable through a function object interface
diff --git a/doc/html/fusion/functional/adapters/fused.html b/doc/html/fusion/functional/adapters/fused.html index 45cce563..4746e4ee 100644 --- a/doc/html/fusion/functional/adapters/fused.html +++ b/doc/html/fusion/functional/adapters/fused.html @@ -26,7 +26,7 @@- + Description
@@ -59,7 +59,7 @@ /functional/adapter/fused.hpp>
- + Synopsis
@@ -67,7 +67,7 @@ class fused;- + Template parameters
@@ -114,7 +114,7 @@- + Model of
@@ -150,7 +150,7 @@
- + Expression Semantics
@@ -214,7 +214,7 @@- + Example
@@ -222,7 +222,7 @@ assert(f(make_vector(1,2l)) == 3l);- + See also
diff --git a/doc/html/fusion/functional/adapters/fused_function_object.html b/doc/html/fusion/functional/adapters/fused_function_object.html index 6a0c59de..2c4f9bb5 100644 --- a/doc/html/fusion/functional/adapters/fused_function_object.html +++ b/doc/html/fusion/functional/adapters/fused_function_object.html @@ -26,7 +26,7 @@
- + Description
@@ -49,7 +49,7 @@ /functional/adapter/fused_function_object.hpp>
- + Synopsis
@@ -57,7 +57,7 @@ class fused_function_object;- + Template parameters
@@ -104,7 +104,7 @@- + Model of
@@ -141,7 +141,7 @@- + Expression Semantics
@@ -205,7 +205,7 @@- + Example
@@ -243,7 +243,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/adapters/fused_procedure.html b/doc/html/fusion/functional/adapters/fused_procedure.html index 09a70ccf..75765279 100644 --- a/doc/html/fusion/functional/adapters/fused_procedure.html +++ b/doc/html/fusion/functional/adapters/fused_procedure.html @@ -26,7 +26,7 @@- + Description
@@ -66,7 +66,7 @@ /functional/adapter/fused_procedure.hpp>
- + Synopsis
@@ -74,7 +74,7 @@ class fused_procedure;- + Template parameters
@@ -120,7 +120,7 @@- + Model of
@@ -156,7 +156,7 @@- + Expression Semantics
@@ -220,7 +220,7 @@- + Example
@@ -241,7 +241,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/adapters/unfused_generic.html b/doc/html/fusion/functional/adapters/unfused_generic.html index f937caab..1026f721 100644 --- a/doc/html/fusion/functional/adapters/unfused_generic.html +++ b/doc/html/fusion/functional/adapters/unfused_generic.html @@ -26,7 +26,7 @@- + Description
@@ -58,7 +58,7 @@ /functional/adapter/unfused_generic.hpp>
- + Synopsis
@@ -66,7 +66,7 @@ class unfused_generic;- + Template parameters
@@ -113,7 +113,7 @@- + Model of
@@ -154,7 +154,7 @@- + Expression Semantics
@@ -218,7 +218,7 @@- + Example
@@ -269,7 +269,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/adapters/unfused_lvalue_args.html b/doc/html/fusion/functional/adapters/unfused_lvalue_args.html index 19480af9..5d036e4d 100644 --- a/doc/html/fusion/functional/adapters/unfused_lvalue_args.html +++ b/doc/html/fusion/functional/adapters/unfused_lvalue_args.html @@ -26,7 +26,7 @@- + Description
@@ -51,7 +51,7 @@ /functional/adapter/unfused_lvalue_args.hpp>
- + Synopsis
@@ -59,7 +59,7 @@ class unfused_lvalue_args;- + Template parameters
@@ -106,7 +106,7 @@- + Model of
@@ -147,7 +147,7 @@- + Expression Semantics
@@ -211,7 +211,7 @@- + Example
@@ -239,7 +239,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/adapters/unfused_rvalue_args.html b/doc/html/fusion/functional/adapters/unfused_rvalue_args.html index c42349a5..6bbaf79e 100644 --- a/doc/html/fusion/functional/adapters/unfused_rvalue_args.html +++ b/doc/html/fusion/functional/adapters/unfused_rvalue_args.html @@ -26,7 +26,7 @@- + Description
@@ -51,7 +51,7 @@ /functional/adapter/unfused_rvalue_args.hpp>
- + Synopsis
@@ -59,7 +59,7 @@ class unfused_rvalue_args;- + Template parameters
@@ -106,7 +106,7 @@- + Model of
@@ -147,7 +147,7 @@- + Expression Semantics
@@ -211,7 +211,7 @@- + Example
@@ -237,7 +237,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/adapters/unfused_typed.html b/doc/html/fusion/functional/adapters/unfused_typed.html index 5e647b0a..ea039b23 100644 --- a/doc/html/fusion/functional/adapters/unfused_typed.html +++ b/doc/html/fusion/functional/adapters/unfused_typed.html @@ -26,7 +26,7 @@- + Description
@@ -65,7 +65,7 @@ /functional/adapter/unfused_typed.hpp>
- + Synopsis
@@ -73,7 +73,7 @@ class unfused_typed;- + Template parameters
@@ -138,7 +138,7 @@- + Model of
@@ -184,7 +184,7 @@- + Expression Semantics
@@ -250,7 +250,7 @@- + Example
@@ -319,7 +319,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/concepts/callable.html b/doc/html/fusion/functional/concepts/callable.html index 5bc41fe4..d4179faa 100644 --- a/doc/html/fusion/functional/concepts/callable.html +++ b/doc/html/fusion/functional/concepts/callable.html @@ -27,7 +27,7 @@
- + Description
@@ -36,7 +36,7 @@ of a function call operator.
- + Models
@@ -51,7 +51,7 @@
- + Examples
diff --git a/doc/html/fusion/functional/concepts/def_callable.html b/doc/html/fusion/functional/concepts/def_callable.html index 5cb8a0f8..e93da651 100644 --- a/doc/html/fusion/functional/concepts/def_callable.html +++ b/doc/html/fusion/functional/concepts/def_callable.html @@ -31,7 +31,7 @@ Callable Object"> Deferred Callable Object- + Description
@@ -40,7 +40,7 @@ to determine the result of a call.
- + Refinement of
@@ -81,7 +81,7 @@- + Expression requirements
@@ -119,7 +119,7 @@- + Models
@@ -133,7 +133,7 @@
- + Examples
diff --git a/doc/html/fusion/functional/concepts/poly.html b/doc/html/fusion/functional/concepts/poly.html index 626811e1..8c3def6a 100644 --- a/doc/html/fusion/functional/concepts/poly.html +++ b/doc/html/fusion/functional/concepts/poly.html @@ -30,7 +30,7 @@ Object"> Polymorphic Function Object- + Description
@@ -39,7 +39,7 @@ Callable Object type.
- + Refinement of
@@ -83,7 +83,7 @@- + Expression requirements
@@ -132,7 +132,7 @@- + Models
@@ -147,7 +147,7 @@
- + Examples
diff --git a/doc/html/fusion/functional/concepts/reg_callable.html b/doc/html/fusion/functional/concepts/reg_callable.html index 62567f3a..333f1f4e 100644 --- a/doc/html/fusion/functional/concepts/reg_callable.html +++ b/doc/html/fusion/functional/concepts/reg_callable.html @@ -30,7 +30,7 @@ Object"> Regular Callable Object- + Description
@@ -39,7 +39,7 @@ can appear immediately to the left of a function call operator.
- + Refinement of
@@ -69,7 +69,7 @@- + Expression requirements
@@ -116,7 +116,7 @@- + Models
@@ -128,7 +128,7 @@
- + Examples
diff --git a/doc/html/fusion/functional/generation/functions/mk_fused.html b/doc/html/fusion/functional/generation/functions/mk_fused.html index 37f88ec4..7341d54e 100644 --- a/doc/html/fusion/functional/generation/functions/mk_fused.html +++ b/doc/html/fusion/functional/generation/functions/mk_fused.html @@ -30,7 +30,7 @@ make_fused"> make_fused- + Description
@@ -40,7 +40,7 @@ conversion is applied to the target function.
- + Synopsis
@@ -50,7 +50,7 @@ make_fused(F const & f);- + Parameters
@@ -97,7 +97,7 @@
- + Expression Semantics
@@ -111,7 +111,7 @@ Semantics: Returns a fused adapter for f.- + Header
@@ -119,7 +119,7 @@ #include <boost/fusion/include/make_fused.hpp>- + Example
@@ -135,7 +135,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/functions/mk_fused_fobj.html b/doc/html/fusion/functional/generation/functions/mk_fused_fobj.html index 18882982..5c77ffe2 100644 --- a/doc/html/fusion/functional/generation/functions/mk_fused_fobj.html +++ b/doc/html/fusion/functional/generation/functions/mk_fused_fobj.html @@ -31,7 +31,7 @@ make_fused_function_object"> make_fused_function_object- + Description
@@ -42,7 +42,7 @@ conversion is applied to the target function.
- + Synopsis
@@ -52,7 +52,7 @@ make_fused_function_object(F const & f);- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -114,7 +114,7 @@ for f.- + Header
@@ -122,7 +122,7 @@ #include <boost/fusion/include/make_fused_function_object.hpp>- + Example
@@ -151,7 +151,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/functions/mk_fused_proc.html b/doc/html/fusion/functional/generation/functions/mk_fused_proc.html index 2e1dc436..ab22e58c 100644 --- a/doc/html/fusion/functional/generation/functions/mk_fused_proc.html +++ b/doc/html/fusion/functional/generation/functions/mk_fused_proc.html @@ -31,7 +31,7 @@ make_fused_procedure"> make_fused_procedure- + Description
@@ -42,7 +42,7 @@ conversion applied to the target function.
- + Synopsis
@@ -52,7 +52,7 @@ make_fused_procedure(F const & f);- + Parameters
@@ -98,7 +98,7 @@
- + Expression Semantics
@@ -113,7 +113,7 @@ f.- + Header
@@ -121,7 +121,7 @@ #include <boost/fusion/include/make_fused_procedure.hpp>- + Example
@@ -131,7 +131,7 @@ assert(front(v) == 0);- + See also
diff --git a/doc/html/fusion/functional/generation/functions/mk_unfused_genrc.html b/doc/html/fusion/functional/generation/functions/mk_unfused_genrc.html index 11f8ce5c..a63b9702 100644 --- a/doc/html/fusion/functional/generation/functions/mk_unfused_genrc.html +++ b/doc/html/fusion/functional/generation/functions/mk_unfused_genrc.html @@ -31,7 +31,7 @@ make_unfused_generic"> make_unfused_generic- + Description
@@ -42,7 +42,7 @@ conversion is applied to the target function.
- + Synopsis
@@ -52,7 +52,7 @@ make_unfused_generic(F const & f);- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -114,7 +114,7 @@ f.- + Header
@@ -122,7 +122,7 @@ #include <boost/fusion/include/make_unfused_generic.hpp>- + Example
@@ -158,7 +158,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/functions/mk_unfused_lvargs.html b/doc/html/fusion/functional/generation/functions/mk_unfused_lvargs.html index 1b3327ff..adb36776 100644 --- a/doc/html/fusion/functional/generation/functions/mk_unfused_lvargs.html +++ b/doc/html/fusion/functional/generation/functions/mk_unfused_lvargs.html @@ -31,7 +31,7 @@ make_unfused_lvalue_args"> make_unfused_lvalue_args- + Description
@@ -42,7 +42,7 @@ conversion is applied to the target function.
- + Synopsis
@@ -52,7 +52,7 @@ make_unfused_lvalue_args(F const & f);- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -114,7 +114,7 @@ for f.- + Header
@@ -122,7 +122,7 @@ #include <boost/fusion/include/make_unfused_lvalue_args.hpp>- + Example
@@ -149,7 +149,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/functions/mk_unfused_rvargs.html b/doc/html/fusion/functional/generation/functions/mk_unfused_rvargs.html index 28cdbfd2..bfb35340 100644 --- a/doc/html/fusion/functional/generation/functions/mk_unfused_rvargs.html +++ b/doc/html/fusion/functional/generation/functions/mk_unfused_rvargs.html @@ -30,7 +30,7 @@ make_unfused_rvalue_args"> make_unfused_rvalue_args- + Description
@@ -41,7 +41,7 @@ conversion is applied to the target function.
- + Synopsis
@@ -51,7 +51,7 @@ make_unfused_rvalue_args(F const & f);- + Parameters
@@ -98,7 +98,7 @@
- + Expression Semantics
@@ -113,7 +113,7 @@ for f.- + Header
@@ -121,7 +121,7 @@ #include <boost/fusion/include/make_unfused_rvalue_args.hpp>- + Example
@@ -147,7 +147,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/metafunctions/mk_fused.html b/doc/html/fusion/functional/generation/metafunctions/mk_fused.html index 2d425902..768fcaa7 100644 --- a/doc/html/fusion/functional/generation/metafunctions/mk_fused.html +++ b/doc/html/fusion/functional/generation/metafunctions/mk_fused.html @@ -30,7 +30,7 @@ make_fused"> make_fused- + Description
@@ -38,7 +38,7 @@ make_fused">make_fused.
- + Header
@@ -46,7 +46,7 @@ #include <boost/fusion/include/make_fused.hpp>- + Synopsis
@@ -60,7 +60,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/metafunctions/mk_fused_fobj.html b/doc/html/fusion/functional/generation/metafunctions/mk_fused_fobj.html index 8b4f20f4..823d45d9 100644 --- a/doc/html/fusion/functional/generation/metafunctions/mk_fused_fobj.html +++ b/doc/html/fusion/functional/generation/metafunctions/mk_fused_fobj.html @@ -31,7 +31,7 @@ make_fused_function_object"> make_fused_function_object- + Description
@@ -39,7 +39,7 @@ make_fused_function_object">make_fused_function_object.
- + Header
@@ -47,7 +47,7 @@ #include <boost/fusion/include/make_fused_function_object.hpp>- + Synopsis
@@ -61,7 +61,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/metafunctions/mk_fused_proc.html b/doc/html/fusion/functional/generation/metafunctions/mk_fused_proc.html index a985890a..c7400505 100644 --- a/doc/html/fusion/functional/generation/metafunctions/mk_fused_proc.html +++ b/doc/html/fusion/functional/generation/metafunctions/mk_fused_proc.html @@ -31,7 +31,7 @@ make_fused_procedure"> make_fused_procedure- + Description
@@ -39,7 +39,7 @@ make_fused_procedure">make_fused_procedure.
- + Header
@@ -47,7 +47,7 @@ #include <boost/fusion/include/make_fused_procedure.hpp>- + Synopsis
@@ -61,7 +61,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/metafunctions/mk_unfused_genrc.html b/doc/html/fusion/functional/generation/metafunctions/mk_unfused_genrc.html index 9e34014c..f328f91f 100644 --- a/doc/html/fusion/functional/generation/metafunctions/mk_unfused_genrc.html +++ b/doc/html/fusion/functional/generation/metafunctions/mk_unfused_genrc.html @@ -31,7 +31,7 @@ make_unfused_generic"> make_unfused_generic- + Description
@@ -39,7 +39,7 @@ make_unfused_generic">make_unfused_generic.
- + Header
@@ -47,7 +47,7 @@ #include <boost/fusion/include/make_unfused_generic.hpp>- + Synopsis
@@ -61,7 +61,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/metafunctions/mk_unfused_lvargs.html b/doc/html/fusion/functional/generation/metafunctions/mk_unfused_lvargs.html index 732f666a..f6bc6b28 100644 --- a/doc/html/fusion/functional/generation/metafunctions/mk_unfused_lvargs.html +++ b/doc/html/fusion/functional/generation/metafunctions/mk_unfused_lvargs.html @@ -31,7 +31,7 @@ make_unfused_lvalue_args"> make_unfused_lvalue_args- + Description
@@ -39,7 +39,7 @@ make_unfused_lvalue_args">make_unfused_lvalue_args.
- + Header
@@ -47,7 +47,7 @@ #include <boost/fusion/include/make_unfused_lvalue_args.hpp>- + Synopsis
@@ -61,7 +61,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/generation/metafunctions/mk_unfused_rvargs.html b/doc/html/fusion/functional/generation/metafunctions/mk_unfused_rvargs.html index 45ee7e92..a5a46e88 100644 --- a/doc/html/fusion/functional/generation/metafunctions/mk_unfused_rvargs.html +++ b/doc/html/fusion/functional/generation/metafunctions/mk_unfused_rvargs.html @@ -30,7 +30,7 @@ make_unfused_rvalue_args"> make_unfused_rvalue_args- + Description
@@ -38,7 +38,7 @@ make_unfused_rvalue_args">make_unfused_rvalue_args.
- + Header
@@ -46,7 +46,7 @@ #include <boost/fusion/include/make_unfused_rvalue_args.hpp>- + Synopsis
@@ -60,7 +60,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/invocation/functions/invoke.html b/doc/html/fusion/functional/invocation/functions/invoke.html index 2d5bdaae..f1964b48 100644 --- a/doc/html/fusion/functional/invocation/functions/invoke.html +++ b/doc/html/fusion/functional/invocation/functions/invoke.html @@ -27,7 +27,7 @@- + Description
@@ -47,7 +47,7 @@ and boost::shared_ptr).
- + Synopsis
@@ -66,7 +66,7 @@ invoke(Function f, Sequence const & s);- + Parameters
@@ -134,7 +134,7 @@
- + Expression Semantics
@@ -154,7 +154,7 @@ /functional/invocation/invoke.hpp>- + Example
@@ -162,7 +162,7 @@ assert(invoke(add,make_vector(1,1)) == 2);- + See also
diff --git a/doc/html/fusion/functional/invocation/functions/invoke_fobj.html b/doc/html/fusion/functional/invocation/functions/invoke_fobj.html index 550a68a8..20f04f8e 100644 --- a/doc/html/fusion/functional/invocation/functions/invoke_fobj.html +++ b/doc/html/fusion/functional/invocation/functions/invoke_fobj.html @@ -30,7 +30,7 @@ invoke_function_object"> invoke_function_object- + Description
@@ -43,7 +43,7 @@ and/or to control the const qualification of a function object.
- + Synopsis
@@ -64,7 +64,7 @@ invoke_function_object(Function f, Sequence const & s);- + Parameters
@@ -132,7 +132,7 @@
- + Expression Semantics
@@ -152,7 +152,7 @@ /functional/invocation/invoke_function_object.hpp>- + Example
@@ -179,7 +179,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/invocation/functions/invoke_proc.html b/doc/html/fusion/functional/invocation/functions/invoke_proc.html index fc9b8590..156defe6 100644 --- a/doc/html/fusion/functional/invocation/functions/invoke_proc.html +++ b/doc/html/fusion/functional/invocation/functions/invoke_proc.html @@ -30,7 +30,7 @@ invoke_procedure"> invoke_procedure- + Description
@@ -54,7 +54,7 @@ isn't implemented).
- + Synopsis
@@ -75,7 +75,7 @@ invoke_procedure(Function f, Sequence const & s);- + Parameters
@@ -142,7 +142,7 @@
- + Expression Semantics
@@ -161,7 +161,7 @@ /functional/invocation/invoke_procedure.hpp>- + Example
@@ -171,7 +171,7 @@ assert(front(v) == 3);- + See also
diff --git a/doc/html/fusion/functional/invocation/metafunctions/invoke.html b/doc/html/fusion/functional/invocation/metafunctions/invoke.html index 7db3fa90..7210b07a 100644 --- a/doc/html/fusion/functional/invocation/metafunctions/invoke.html +++ b/doc/html/fusion/functional/invocation/metafunctions/invoke.html @@ -27,14 +27,14 @@- + Description
Returns the result type of invoke.
- + Synopsis
@@ -51,7 +51,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/invocation/metafunctions/invoke_fobj.html b/doc/html/fusion/functional/invocation/metafunctions/invoke_fobj.html index fb7f26c4..5a1915a9 100644 --- a/doc/html/fusion/functional/invocation/metafunctions/invoke_fobj.html +++ b/doc/html/fusion/functional/invocation/metafunctions/invoke_fobj.html @@ -30,7 +30,7 @@ invoke_function_object"> invoke_function_object- + Description
@@ -38,7 +38,7 @@ invoke_function_object">invoke_function_object.
- + Synopsis
@@ -55,7 +55,7 @@ }
- + See also
diff --git a/doc/html/fusion/functional/invocation/metafunctions/invoke_proc.html b/doc/html/fusion/functional/invocation/metafunctions/invoke_proc.html index a7a99107..70e7bf59 100644 --- a/doc/html/fusion/functional/invocation/metafunctions/invoke_proc.html +++ b/doc/html/fusion/functional/invocation/metafunctions/invoke_proc.html @@ -30,7 +30,7 @@ invoke_procedure"> invoke_procedure- + Description
@@ -38,7 +38,7 @@ invoke_procedure">invoke_procedure.
- + Synopsis
@@ -55,7 +55,7 @@ }
- + See also
diff --git a/doc/html/fusion/introduction.html b/doc/html/fusion/introduction.html index a4a3467b..c5cdeda0 100644 --- a/doc/html/fusion/introduction.html +++ b/doc/html/fusion/introduction.html @@ -115,8 +115,10 @@ sequences and MPL sequences are fully compatible with Fusion. You can work with Fusion sequences on MPL if you - wish to work solely on types. In MPL, - Fusion sequences follow MPL's + wish to work solely on types + [1] + . In MPL, Fusion + sequences follow MPL's sequence-type preserving semantics (i.e. algorithms preserve the original sequence type. e.g. transforming a vector returns a vector). You can also convert from an MPL sequence @@ -127,6 +129,15 @@ instantiation of real runtime objects with data. You have the best of both worlds. ++
++[1] + Choose MPL + over fusion when doing pure type calculations. Once the static type calculation + is finished, you can instantiate a fusion sequence (see Conversion) + for the runtime part. +
diff --git a/doc/html/fusion/iterator.html b/doc/html/fusion/iterator.html index 1434eed3..b490ea5d 100644 --- a/doc/html/fusion/iterator.html +++ b/doc/html/fusion/iterator.html @@ -74,7 +74,7 @@ Sequence. |
Moves an iterator by a specified distance.
@@ -44,7 +44,7 @@ typename result_of::advance<I, M>::type advance(I const& i);
@@ -139,7 +139,7 @@ #include <boost/fusion/include/advance.hpp>
diff --git a/doc/html/fusion/iterator/functions/advance_c.html b/doc/html/fusion/iterator/functions/advance_c.html index 0eaf1c54..6385f43b 100644 --- a/doc/html/fusion/iterator/functions/advance_c.html +++ b/doc/html/fusion/iterator/functions/advance_c.html @@ -26,14 +26,14 @@- + Description
Moves an iterator by a specified distance.
- + Synopsis
@@ -44,7 +44,7 @@ typename result_of::advance_c<I, N>::type advance_c(I const& i);- + Expression Semantics
@@ -130,7 +130,7 @@ may be negative.- + Header
@@ -138,7 +138,7 @@ #include <boost/fusion/include/advance.hpp>- + Example
diff --git a/doc/html/fusion/iterator/functions/deref.html b/doc/html/fusion/iterator/functions/deref.html index fb22ed6e..1eb8ebfe 100644 --- a/doc/html/fusion/iterator/functions/deref.html +++ b/doc/html/fusion/iterator/functions/deref.html @@ -26,14 +26,14 @@- + Description
Deferences an iterator.
- + Synopsis
@@ -43,7 +43,7 @@ typename result_of::deref<I>::type deref(I const& i);- + Expression Semantics
@@ -104,7 +104,7 @@ i.- + Header
@@ -112,7 +112,7 @@ #include <boost/fusion/include/deref.hpp>- + Example
diff --git a/doc/html/fusion/iterator/functions/distance.html b/doc/html/fusion/iterator/functions/distance.html index afcfd8cc..d3803191 100644 --- a/doc/html/fusion/iterator/functions/distance.html +++ b/doc/html/fusion/iterator/functions/distance.html @@ -26,14 +26,14 @@- + Description
Returns the distance between 2 iterators.
- + Synopsis
@@ -44,7 +44,7 @@ typename result_of::distance<I, J>::type distance(I const& i, J const& j);- + Expression Semantics
@@ -105,7 +105,7 @@ iterators i and j.- + Header
@@ -113,7 +113,7 @@ #include <boost/fusion/include/distance.hpp>- + Example
diff --git a/doc/html/fusion/iterator/functions/next.html b/doc/html/fusion/iterator/functions/next.html index 513d89b7..877b86f4 100644 --- a/doc/html/fusion/iterator/functions/next.html +++ b/doc/html/fusion/iterator/functions/next.html @@ -26,14 +26,14 @@- + Description
Moves an iterator 1 position forwards.
- + Synopsis
@@ -43,7 +43,7 @@ typename result_of::next<I>::type next(I const& i);- + Expression Semantics
@@ -105,7 +105,7 @@ next element after i.- + Header
@@ -113,7 +113,7 @@ #include <boost/fusion/include/next.hpp>- + Example
diff --git a/doc/html/fusion/iterator/functions/prior.html b/doc/html/fusion/iterator/functions/prior.html index a9f13b1e..f5ceb019 100644 --- a/doc/html/fusion/iterator/functions/prior.html +++ b/doc/html/fusion/iterator/functions/prior.html @@ -26,14 +26,14 @@- + Description
Moves an iterator 1 position backwards.
- + Synopsis
@@ -43,7 +43,7 @@ typename result_of::prior<I>::type prior(I const& i);- + Expression Semantics
@@ -105,7 +105,7 @@ element prior to i.- + Header
@@ -113,7 +113,7 @@ #include <boost/fusion/include/prior.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/advance.html b/doc/html/fusion/iterator/metafunctions/advance.html index 4e153e59..1947ad85 100644 --- a/doc/html/fusion/iterator/metafunctions/advance.html +++ b/doc/html/fusion/iterator/metafunctions/advance.html @@ -26,14 +26,14 @@- + Description
Moves an iterator a specified distance.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -133,7 +133,7 @@ may be negative.- + Header
@@ -141,7 +141,7 @@ #include <boost/fusion/include/advance.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/advance_c.html b/doc/html/fusion/iterator/metafunctions/advance_c.html index 92377359..7e3eeb51 100644 --- a/doc/html/fusion/iterator/metafunctions/advance_c.html +++ b/doc/html/fusion/iterator/metafunctions/advance_c.html @@ -26,14 +26,14 @@- + Description
Moves an iterator by a specified distance.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -132,7 +132,7 @@ may be negative. Equivalent to result_of::advance<I, boost::mpl::int_<N> >::type.- + Header
@@ -140,7 +140,7 @@ #include <boost/fusion/include/advance.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/deref.html b/doc/html/fusion/iterator/metafunctions/deref.html index c530ba7a..d02e6a28 100644 --- a/doc/html/fusion/iterator/metafunctions/deref.html +++ b/doc/html/fusion/iterator/metafunctions/deref.html @@ -26,14 +26,14 @@- + Description
Returns the type that will be returned by dereferencing an iterator.
- + Synposis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -107,7 +107,7 @@ an iterator of type I.- + Header
@@ -115,7 +115,7 @@ #include <boost/fusion/include/deref.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/distance.html b/doc/html/fusion/iterator/metafunctions/distance.html index 951c2554..bb3e1d1e 100644 --- a/doc/html/fusion/iterator/metafunctions/distance.html +++ b/doc/html/fusion/iterator/metafunctions/distance.html @@ -26,14 +26,14 @@- + Description
Returns the distance between two iterators.
- + Synopsis
@@ -47,7 +47,7 @@ };
- + Expression Semantics
@@ -110,7 +110,7 @@ J.- + Header
@@ -118,7 +118,7 @@ #include <boost/fusion/include/distance.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/equal_to.html b/doc/html/fusion/iterator/metafunctions/equal_to.html index 9f9134af..24ba49d9 100644 --- a/doc/html/fusion/iterator/metafunctions/equal_to.html +++ b/doc/html/fusion/iterator/metafunctions/equal_to.html @@ -26,7 +26,7 @@- + Description
@@ -35,7 +35,7 @@ and J are equal.
- + Synopsis
@@ -49,7 +49,7 @@ };
- + Expression Semantics
@@ -110,7 +110,7 @@ Returns boost::mpl::false_ otherwise.- + Header
@@ -118,7 +118,7 @@ #include <boost/fusion/include/equal_to.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/next.html b/doc/html/fusion/iterator/metafunctions/next.html index 490e34f7..d006635d 100644 --- a/doc/html/fusion/iterator/metafunctions/next.html +++ b/doc/html/fusion/iterator/metafunctions/next.html @@ -26,14 +26,14 @@- + Description
Returns the type of the next iterator in a sequence.
- + Synposis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -108,7 +108,7 @@ next element in the sequence after I.- + Header
@@ -116,7 +116,7 @@ #include <boost/fusion/include/next.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/prior.html b/doc/html/fusion/iterator/metafunctions/prior.html index 28747387..e431177d 100644 --- a/doc/html/fusion/iterator/metafunctions/prior.html +++ b/doc/html/fusion/iterator/metafunctions/prior.html @@ -26,14 +26,14 @@- + Description
Returns the type of the previous iterator in a sequence.
- + Synopsis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -108,7 +108,7 @@ previous element in the sequence before I.- + Header
@@ -116,7 +116,7 @@ #include <boost/fusion/include/prior.hpp>- + Example
diff --git a/doc/html/fusion/iterator/metafunctions/value_of.html b/doc/html/fusion/iterator/metafunctions/value_of.html index c71282dc..08604d48 100644 --- a/doc/html/fusion/iterator/metafunctions/value_of.html +++ b/doc/html/fusion/iterator/metafunctions/value_of.html @@ -26,14 +26,14 @@- + Description
Returns the type stored at the position of an iterator.
- + Synopsis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -107,7 +107,7 @@ a sequence at iterator position I.- + Header
@@ -115,7 +115,7 @@ #include <boost/fusion/include/value_of.hpp>- + Example
diff --git a/doc/html/fusion/iterator/operator/operator_equality.html b/doc/html/fusion/iterator/operator/operator_equality.html index f1210022..51a9529f 100644 --- a/doc/html/fusion/iterator/operator/operator_equality.html +++ b/doc/html/fusion/iterator/operator/operator_equality.html @@ -31,14 +31,14 @@ =="> Operator ==
Compares 2 iterators for equality.
@@ -49,7 +49,7 @@ unspecified operator==(I const& i, J const& i);
diff --git a/doc/html/fusion/iterator/operator/operator_inequality.html b/doc/html/fusion/iterator/operator/operator_inequality.html index c23b2ef4..c7dc174e 100644 --- a/doc/html/fusion/iterator/operator/operator_inequality.html +++ b/doc/html/fusion/iterator/operator/operator_inequality.html @@ -30,14 +30,14 @@ !="> Operator !=- + Description
Compares 2 iterators for inequality.
- + Synopsis
@@ -48,7 +48,7 @@ unspecified operator==(I const& i, J const& i);- + Expression Semantics
@@ -105,7 +105,7 @@ and j respectively.- + Header
diff --git a/doc/html/fusion/iterator/operator/operator_unary_star.html b/doc/html/fusion/iterator/operator/operator_unary_star.html index 731433c0..653f243d 100644 --- a/doc/html/fusion/iterator/operator/operator_unary_star.html +++ b/doc/html/fusion/iterator/operator/operator_unary_star.html @@ -30,14 +30,14 @@ *"> Operator *- + Description
Dereferences an iterator.
- + Synopsis
@@ -47,7 +47,7 @@ typename result_of::deref<I>::type operator*(unspecified<I> const& i);- + Expression Semantics
@@ -108,7 +108,7 @@ Semantics: Equivalent to deref(i).- + Header
@@ -116,7 +116,7 @@ #include <boost/fusion/include/deref.hpp>- + Example
diff --git a/doc/html/fusion/notes.html b/doc/html/fusion/notes.html index 2126f5e9..971ef3f4 100644 --- a/doc/html/fusion/notes.html +++ b/doc/html/fusion/notes.html @@ -27,7 +27,7 @@- + Recursive Inlined Functions
@@ -41,7 +41,7 @@ remains linear.- + Overloaded Functions
@@ -51,7 +51,7 @@ given a key, k.
- + Tag Dispatching
- + Extensibility
@@ -138,7 +138,7 @@ it very cheap to pass around.
- + Element Conversion
@@ -161,7 +161,7 @@
Array arguments are deduced to reference to const types. For example - [14] + [14] :
@@ -194,7 +194,7 @@ list<void (*)(int)>- + boost::ref
@@ -237,7 +237,7 @@
-[14] +
[14] Note that the type of a string literal is an array of const characters, not const char*. To get make_list to create a list with an element of a non-const array type one must use the ref diff --git a/doc/html/fusion/organization.html b/doc/html/fusion/organization.html index d34c6be3..ba26bd8a 100644 --- a/doc/html/fusion/organization.html +++ b/doc/html/fusion/organization.html @@ -34,7 +34,7 @@ The library is organized in three layers:
- + Layers
@@ -65,7 +65,7 @@ against.- + Directory
@@ -186,7 +186,7 @@
- + Example
@@ -202,12 +202,12 @@
The first includes all containers The second includes only list - [3] + [4] .
-[3] +
diff --git a/doc/html/fusion/quick_start.html b/doc/html/fusion/quick_start.html index 529d34a8..3a31cb9a 100644 --- a/doc/html/fusion/quick_start.html +++ b/doc/html/fusion/quick_start.html @@ -33,7 +33,7 @@[4] Modules may contain smaller components. Header file information for each component will be provided as part of the component's documentation.
For starters, we shall include all of Fusion's Sequence(s) - [1] + [2] :
@@ -42,7 +42,7 @@Let's begin with a vector - [2] + [3] :
@@ -60,7 +60,7 @@ Let's see some examples.- + Print the vector as XML
@@ -118,7 +118,7 @@ print just about any Fusion Sequence.- + Print only pointers
@@ -152,7 +152,7 @@ Easy, right?
- + Associative tuples
@@ -227,7 +227,7 @@ a dog or a whole alternate_universe.
- + Tip of the Iceberg
@@ -238,12 +238,12 @@
-[1] +
-[2] There are finer grained header files available if you wish to have more control over which components to include (see section Orgainization for details).
[2] +
[3] Unless otherwise noted, components are in namespace boost::fusion. For the sake of simplicity, code in this quick start implies using directives for the fusion components we will be using. diff --git a/doc/html/fusion/sequence.html b/doc/html/fusion/sequence.html index 47ddda51..90f6dbee 100644 --- a/doc/html/fusion/sequence.html +++ b/doc/html/fusion/sequence.html @@ -59,7 +59,7 @@ type that can be used to iterate through the Sequence's elements.
- + Header
diff --git a/doc/html/fusion/sequence/concepts.html b/doc/html/fusion/sequence/concepts.html index 18ca1062..3c4f1508 100644 --- a/doc/html/fusion/sequence/concepts.html +++ b/doc/html/fusion/sequence/concepts.html @@ -40,7 +40,7 @@ Fusion Sequences are organized into a hierarchy of concepts.- + Traversal
@@ -58,7 +58,7 @@ Sequence. These concepts pertain to sequence traversal.
- + Associativity
diff --git a/doc/html/fusion/sequence/concepts/associative_sequence.html b/doc/html/fusion/sequence/concepts/associative_sequence.html index d3434fe4..959e29dd 100644 --- a/doc/html/fusion/sequence/concepts/associative_sequence.html +++ b/doc/html/fusion/sequence/concepts/associative_sequence.html @@ -30,7 +30,7 @@ Sequence">Associative Sequence
- + Description
@@ -71,7 +71,7 @@
- + Valid Expressions
@@ -180,7 +180,7 @@- + Result Type Expressions
@@ -252,7 +252,7 @@ result_of::value_at_key<S, N>.- + Expression Semantics
@@ -307,7 +307,7 @@- + Models
diff --git a/doc/html/fusion/sequence/concepts/bidirectional_sequence.html b/doc/html/fusion/sequence/concepts/bidirectional_sequence.html index 18e07798..044de653 100644 --- a/doc/html/fusion/sequence/concepts/bidirectional_sequence.html +++ b/doc/html/fusion/sequence/concepts/bidirectional_sequence.html @@ -31,7 +31,7 @@ Sequence">Bidirectional Sequence
- + Description
@@ -42,7 +42,7 @@ Iterator.
- + Refinement of
@@ -72,7 +72,7 @@- + Valid Expressions
@@ -207,7 +207,7 @@- + Result Type Expressions
@@ -268,7 +268,7 @@- + Expression Semantics
@@ -309,7 +309,7 @@- + Models
diff --git a/doc/html/fusion/sequence/concepts/forward_sequence.html b/doc/html/fusion/sequence/concepts/forward_sequence.html index c530d85d..dbd8bc2d 100644 --- a/doc/html/fusion/sequence/concepts/forward_sequence.html +++ b/doc/html/fusion/sequence/concepts/forward_sequence.html @@ -30,7 +30,7 @@ Sequence">Forward Sequence
- + Description
- + Valid Expressions
@@ -239,7 +239,7 @@- + Result Type Expressions
@@ -324,7 +324,7 @@- + Expression Semantics
@@ -412,7 +412,7 @@- + Invariants
- + Models
diff --git a/doc/html/fusion/sequence/concepts/random_access_sequence.html b/doc/html/fusion/sequence/concepts/random_access_sequence.html index 8f353461..15092dca 100644 --- a/doc/html/fusion/sequence/concepts/random_access_sequence.html +++ b/doc/html/fusion/sequence/concepts/random_access_sequence.html @@ -31,7 +31,7 @@ Access Sequence">Random Access Sequence
- + Description
@@ -43,7 +43,7 @@ sequence elements.
- + Refinement of
@@ -79,7 +79,7 @@- + Valid Expressions
@@ -214,7 +214,7 @@- + Result Type Expressions
@@ -297,7 +297,7 @@ result_of::value_at<S, N>.- + Expression Semantics
@@ -338,7 +338,7 @@- + Models
diff --git a/doc/html/fusion/sequence/intrinsic.html b/doc/html/fusion/sequence/intrinsic.html index b131dcff..cbbe5af3 100644 --- a/doc/html/fusion/sequence/intrinsic.html +++ b/doc/html/fusion/sequence/intrinsic.html @@ -37,11 +37,11 @@ Intrinsic functions, unlike Algorithms, are not generic across the full Sequence repertoire. They need to be implemented for each Fusion Sequence - [4] + [5] .
- + Header
@@ -50,7 +50,7 @@
-[4] +
diff --git a/doc/html/fusion/sequence/intrinsic/functions/at.html b/doc/html/fusion/sequence/intrinsic/functions/at.html index 8493fff6..38571b05 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/at.html +++ b/doc/html/fusion/sequence/intrinsic/functions/at.html @@ -26,14 +26,14 @@[5] In practice, many of intrinsic functions have default implementations that will work in majority of cases
- + Description
Returns the N-th element from the beginning of the sequence.
- + Synopsis
@@ -46,7 +46,7 @@ at(Sequence const& seq);- + Parameters
@@ -113,7 +113,7 @@
- + Expression Semantics
@@ -141,7 +141,7 @@ deref(advance<N>(begin(s)))- + Header
@@ -149,7 +149,7 @@ #include <boost/fusion/include/at.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/at_c.html b/doc/html/fusion/sequence/intrinsic/functions/at_c.html index 2866bfc9..a0fdbaf1 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/at_c.html +++ b/doc/html/fusion/sequence/intrinsic/functions/at_c.html @@ -26,14 +26,14 @@- + Description
Returns the N-th element from the beginning of the sequence.
- + Synopsis
@@ -46,7 +46,7 @@ at_c(Sequence const& seq);- + Parameters
@@ -112,7 +112,7 @@
- + Expression Semantics
@@ -141,7 +141,7 @@ deref(advance<N>(begin(s)))- + Header
@@ -149,7 +149,7 @@ #include <boost/fusion/include/at_c.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/at_key.html b/doc/html/fusion/sequence/intrinsic/functions/at_key.html index a3861d5f..99e8aa4e 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/at_key.html +++ b/doc/html/fusion/sequence/intrinsic/functions/at_key.html @@ -26,14 +26,14 @@- + Description
Returns the element associated with a Key from the sequence.
- + Synopsis
@@ -46,7 +46,7 @@ at_key(Sequence const& seq);- + Parameters
@@ -112,7 +112,7 @@
- + Expression Semantics
@@ -136,7 +136,7 @@ with Key.- + Header
@@ -144,7 +144,7 @@ #include <boost/fusion/include/at_key.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/back.html b/doc/html/fusion/sequence/intrinsic/functions/back.html index 2685c8a0..70b28e90 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/back.html +++ b/doc/html/fusion/sequence/intrinsic/functions/back.html @@ -26,14 +26,14 @@- + Description
Returns the last element in the sequence.
- + Synopsis
@@ -46,7 +46,7 @@ back(Sequence const& seq);- + Parameters
@@ -93,7 +93,7 @@
- + Expression Semantics
@@ -117,7 +117,7 @@ in the sequence.- + Header
@@ -125,7 +125,7 @@ #include <boost/fusion/include/back.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/begin.html b/doc/html/fusion/sequence/intrinsic/functions/begin.html index 94ac29d3..cd751fb2 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/begin.html +++ b/doc/html/fusion/sequence/intrinsic/functions/begin.html @@ -26,14 +26,14 @@- + Description
Returns an iterator pointing to the first element in the sequence.
- + Synopsis
@@ -46,7 +46,7 @@ begin(Sequence const& seq);- + Parameters
@@ -93,7 +93,7 @@
- + Expression Semantics
@@ -123,7 +123,7 @@ to the first element in the sequence.- + Header
@@ -131,7 +131,7 @@ #include <boost/fusion/include/begin.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/empty.html b/doc/html/fusion/sequence/intrinsic/functions/empty.html index 3492aa2b..eea11704 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/empty.html +++ b/doc/html/fusion/sequence/intrinsic/functions/empty.html @@ -26,7 +26,7 @@- + Description
@@ -35,7 +35,7 @@ the sequence is empty, else, evaluates to false.
- + Synopsis
@@ -44,7 +44,7 @@ empty(Sequence const& seq);- + Parameters
@@ -91,7 +91,7 @@
- + Expression Semantics
@@ -106,7 +106,7 @@ to false.- + Header
@@ -114,7 +114,7 @@ #include <boost/fusion/include/empty.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/end.html b/doc/html/fusion/sequence/intrinsic/functions/end.html index 29377d59..007bc1e0 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/end.html +++ b/doc/html/fusion/sequence/intrinsic/functions/end.html @@ -26,14 +26,14 @@- + Description
Returns an iterator pointing to one element past the end of the sequence.
- + Synopsis
@@ -46,7 +46,7 @@ end(Sequence const& seq);- + Parameters
@@ -93,7 +93,7 @@
- + Expression Semantics
@@ -123,7 +123,7 @@ to one element past the end of the sequence.- + Header
@@ -131,7 +131,7 @@ #include <boost/fusion/include/end.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/front.html b/doc/html/fusion/sequence/intrinsic/functions/front.html index 632784a4..41b2dfb2 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/front.html +++ b/doc/html/fusion/sequence/intrinsic/functions/front.html @@ -26,14 +26,14 @@- + Description
Returns the first element in the sequence.
- + Synopsis
@@ -46,7 +46,7 @@ front(Sequence const& seq);- + Parameters
@@ -93,7 +93,7 @@
- + Expression Semantics
@@ -117,7 +117,7 @@ in the sequence.- + Header
@@ -125,7 +125,7 @@ #include <boost/fusion/include/front.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/has_key.html b/doc/html/fusion/sequence/intrinsic/functions/has_key.html index 06757004..2fb1e241 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/has_key.html +++ b/doc/html/fusion/sequence/intrinsic/functions/has_key.html @@ -26,7 +26,7 @@- + Description
@@ -36,7 +36,7 @@ to false.
- + Synopsis
@@ -45,7 +45,7 @@ has_key(Sequence const& seq);- + Parameters
@@ -111,7 +111,7 @@
- + Expression Semantics
@@ -126,7 +126,7 @@ associated with Key, else, evaluates to false.- + Header
@@ -134,7 +134,7 @@ #include <boost/fusion/include/has_key.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/size.html b/doc/html/fusion/sequence/intrinsic/functions/size.html index 42da5849..dd98ddbf 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/size.html +++ b/doc/html/fusion/sequence/intrinsic/functions/size.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ that evaluates the number of elements in the sequence.
- + Synopsis
@@ -43,7 +43,7 @@ size(Sequence const& seq);- + Parameters
@@ -90,7 +90,7 @@
- + Expression Semantics
@@ -105,7 +105,7 @@ in the sequence.- + Header
@@ -113,7 +113,7 @@ #include <boost/fusion/include/size.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/functions/swap.html b/doc/html/fusion/sequence/intrinsic/functions/swap.html index 632a5704..411915a1 100644 --- a/doc/html/fusion/sequence/intrinsic/functions/swap.html +++ b/doc/html/fusion/sequence/intrinsic/functions/swap.html @@ -26,14 +26,14 @@- + Description
Performs an element by element swap of the elements in 2 sequences.
- + Synopsis
@@ -41,7 +41,7 @@ void swap(Seq1& seq1, Seq2& seq2);- + Parameters
@@ -88,7 +88,7 @@
- + Expression Semantics
@@ -108,7 +108,7 @@ /sequence/intrinsic/swap.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/at.html b/doc/html/fusion/sequence/intrinsic/metafunctions/at.html index 0981ce31..e6935a0b 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/at.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/at.html @@ -26,16 +26,16 @@- + Description
Returns the result type of at - [5] + [6] .
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -132,7 +132,7 @@ /sequence/intrinsic/at.hpp>- + Example
@@ -141,7 +141,7 @@
-[5] +
[6] result_of::at reflects the actual return type of the function at. Sequence(s) typically return references to its elements via the at function. If you want diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/at_c.html b/doc/html/fusion/sequence/intrinsic/metafunctions/at_c.html index 8da90fc2..75815744 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/at_c.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/at_c.html @@ -26,16 +26,16 @@
- + Description
Returns the result type of at_c - [6] + [7] .
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -131,7 +131,7 @@ /sequence/intrinsic/at.hpp>- + Example
@@ -140,7 +140,7 @@
-[6] +
[7] result_of::at_c reflects the actual return type of the function at_c. Sequence(s) typically return references to its elements via the at_c function. If you want diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/at_key.html b/doc/html/fusion/sequence/intrinsic/metafunctions/at_key.html index d4b45370..0239a27a 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/at_key.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/at_key.html @@ -26,16 +26,16 @@
- + Description
Returns the result type of at_key - [7] + [8] .
- + Synopsis
@@ -48,7 +48,7 @@ };
- + Expression Semantics
@@ -133,7 +133,7 @@ /sequence/intrinsic/at_key.hpp>- + Example
@@ -142,7 +142,7 @@
-[7] +
[8] result_of::at_key reflects the actual return type of the function at_key. _sequence_s typically return references to its elements via the at_key function. If you diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/back.html b/doc/html/fusion/sequence/intrinsic/metafunctions/back.html index 85344454..9bca7e56 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/back.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/back.html @@ -26,14 +26,14 @@
- + Description
Returns the result type of back.
- + Synopsis
@@ -44,7 +44,7 @@ };
- + Expression Semantics
@@ -108,7 +108,7 @@ /sequence/intrinsic/back.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/begin.html b/doc/html/fusion/sequence/intrinsic/metafunctions/begin.html index 47908f24..f514eaea 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/begin.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/begin.html @@ -26,14 +26,14 @@- + Description
Returns the result type of begin.
- + Synopsis
@@ -44,7 +44,7 @@ };
- + Expression Semantics
@@ -109,7 +109,7 @@ /sequence/intrinsic/begin.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/empty.html b/doc/html/fusion/sequence/intrinsic/metafunctions/empty.html index 4ce54898..fc6b344a 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/empty.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/empty.html @@ -26,14 +26,14 @@- + Description
Returns the result type of empty.
- + Synopsis
@@ -44,7 +44,7 @@ };
- + Expression Semantics
@@ -110,7 +110,7 @@ /sequence/intrinsic/empty.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/end.html b/doc/html/fusion/sequence/intrinsic/metafunctions/end.html index e4a341f4..b4dcc312 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/end.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/end.html @@ -26,14 +26,14 @@- + Description
Returns the result type of end.
- + Synopsis
@@ -44,7 +44,7 @@ };
- + Expression Semantics
@@ -109,7 +109,7 @@ /sequence/intrinsic/end.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/front.html b/doc/html/fusion/sequence/intrinsic/metafunctions/front.html index 396a88b5..5313ead9 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/front.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/front.html @@ -26,14 +26,14 @@- + Description
Returns the result type of front.
- + Synopsis
@@ -44,7 +44,7 @@ };
- + Expression Semantics
@@ -109,7 +109,7 @@ /sequence/intrinsic/front.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/has_key.html b/doc/html/fusion/sequence/intrinsic/metafunctions/has_key.html index 0eee5f60..9b4931e2 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/has_key.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/has_key.html @@ -26,14 +26,14 @@- + Description
Returns the result type of has_key.
- + Synopsis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -132,7 +132,7 @@ /sequence/intrinsic/has_key.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/size.html b/doc/html/fusion/sequence/intrinsic/metafunctions/size.html index 7d42813e..7d4be7d5 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/size.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/size.html @@ -26,14 +26,14 @@- + Description
Returns the result type of size.
- + Synopsis
@@ -44,7 +44,7 @@ };
- + Expression Semantics
@@ -109,7 +109,7 @@ /sequence/intrinsic/size.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/swap.html b/doc/html/fusion/sequence/intrinsic/metafunctions/swap.html index cd14b573..cf6e17c9 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/swap.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/swap.html @@ -26,14 +26,14 @@- + Description
Returns the return type of swap.
- + Synopsis
@@ -44,7 +44,7 @@ };
- + Expression Semantics
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/value_at.html b/doc/html/fusion/sequence/intrinsic/metafunctions/value_at.html index 83060686..06c0e66f 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/value_at.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/value_at.html @@ -26,14 +26,14 @@- + Description
Returns the actual type at a given index from the Sequence.
- + Synopsis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -130,7 +130,7 @@ /sequence/intrinsic/value_at.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_c.html b/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_c.html index 5d25567d..8e4c4770 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_c.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_c.html @@ -26,14 +26,14 @@- + Description
Returns the actual type at a given index from the Sequence.
- + Synopsis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -129,7 +129,7 @@ /sequence/intrinsic/value_at.hpp>- + Example
diff --git a/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_key.html b/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_key.html index 7b4d49ac..1181c6c4 100644 --- a/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_key.html +++ b/doc/html/fusion/sequence/intrinsic/metafunctions/value_at_key.html @@ -26,14 +26,14 @@- + Description
Returns the actual element type associated with a Key from the Sequence.
- + Synopsis
@@ -46,7 +46,7 @@ };
- + Expression Semantics
@@ -130,7 +130,7 @@ /sequence/intrinsic/value_at_key.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/comparison.html b/doc/html/fusion/sequence/operator/comparison.html index a51bd7f5..477132a5 100644 --- a/doc/html/fusion/sequence/operator/comparison.html +++ b/doc/html/fusion/sequence/operator/comparison.html @@ -48,7 +48,7 @@ only until the result is clear.- + Header
diff --git a/doc/html/fusion/sequence/operator/comparison/equal.html b/doc/html/fusion/sequence/operator/comparison/equal.html index 710df9fd..1d0f9c03 100644 --- a/doc/html/fusion/sequence/operator/comparison/equal.html +++ b/doc/html/fusion/sequence/operator/comparison/equal.html @@ -27,14 +27,14 @@- + Description
Compare two sequences for equality.
- + Synopsis
@@ -43,7 +43,7 @@ operator==(Seq1 const& a, Seq2 const& b);- + Parameters
@@ -89,7 +89,7 @@
- + Expression Semantics
@@ -125,7 +125,7 @@ true.- + Header
@@ -133,7 +133,7 @@ #include <boost/fusion/include/equal_to.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/comparison/greater_than.html b/doc/html/fusion/sequence/operator/comparison/greater_than.html index c6253c1e..b71ab098 100644 --- a/doc/html/fusion/sequence/operator/comparison/greater_than.html +++ b/doc/html/fusion/sequence/operator/comparison/greater_than.html @@ -34,7 +34,7 @@ Lexicographically compare two sequences.- + Synopsis
@@ -43,7 +43,7 @@ operator>(Seq1 const& a, Seq2 const& b);- + Parameters
@@ -89,7 +89,7 @@
- + Expression Semantics
@@ -117,7 +117,7 @@ Semantics: Returns b < a.- + Header
@@ -125,7 +125,7 @@ #include <boost/fusion/include/less_equal.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/comparison/greater_than_equal.html b/doc/html/fusion/sequence/operator/comparison/greater_than_equal.html index 9c9cc08b..bdbc77a7 100644 --- a/doc/html/fusion/sequence/operator/comparison/greater_than_equal.html +++ b/doc/html/fusion/sequence/operator/comparison/greater_than_equal.html @@ -33,7 +33,7 @@ Lexicographically compare two sequences.- + Synopsis
@@ -42,7 +42,7 @@ operator>=(Seq1 const& a, Seq2 const& b);- + Parameters
@@ -88,7 +88,7 @@
- + Expression Semantics
@@ -116,7 +116,7 @@ Semantics: Returns !(a < b).- + Header
@@ -124,7 +124,7 @@ #include <boost/fusion/include/greater_equal.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/comparison/less_than.html b/doc/html/fusion/sequence/operator/comparison/less_than.html index d9f47658..19c63f56 100644 --- a/doc/html/fusion/sequence/operator/comparison/less_than.html +++ b/doc/html/fusion/sequence/operator/comparison/less_than.html @@ -34,7 +34,7 @@ Lexicographically compare two sequences.- + Synopsis
@@ -43,7 +43,7 @@ operator<(Seq1 const& a, Seq2 const& b);- + Parameters
@@ -89,7 +89,7 @@
- + Expression Semantics
@@ -119,7 +119,7 @@ and b.- + Header
@@ -127,7 +127,7 @@ #include <boost/fusion/include/less.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/comparison/less_than_equal.html b/doc/html/fusion/sequence/operator/comparison/less_than_equal.html index 1fbb151d..aa602ef2 100644 --- a/doc/html/fusion/sequence/operator/comparison/less_than_equal.html +++ b/doc/html/fusion/sequence/operator/comparison/less_than_equal.html @@ -34,7 +34,7 @@ Lexicographically compare two sequences.- + Synopsis
@@ -43,7 +43,7 @@ operator<=(Seq1 const& a, Seq2 const& b);- + Parameters
@@ -89,7 +89,7 @@
- + Expression Semantics
@@ -117,7 +117,7 @@ Semantics: Returns !(b < a).- + Header
@@ -125,7 +125,7 @@ #include <boost/fusion/include/less_equal.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/comparison/not_equal.html b/doc/html/fusion/sequence/operator/comparison/not_equal.html index e580d23c..d6fb5b3a 100644 --- a/doc/html/fusion/sequence/operator/comparison/not_equal.html +++ b/doc/html/fusion/sequence/operator/comparison/not_equal.html @@ -33,7 +33,7 @@ Compare two sequences for inequality.- + Synopsis
@@ -42,7 +42,7 @@ operator!=(Seq1 const& a, Seq2 const& b);- + Parameters
@@ -88,7 +88,7 @@
- + Expression Semantics
@@ -119,7 +119,7 @@ Returns !(a == b).- + Header
@@ -127,7 +127,7 @@ #include <boost/fusion/include/not_equal_to.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/i_o.html b/doc/html/fusion/sequence/operator/i_o.html index 623d8ccd..055c0069 100644 --- a/doc/html/fusion/sequence/operator/i_o.html +++ b/doc/html/fusion/sequence/operator/i_o.html @@ -116,7 +116,7 @@ representation may not be unambiguously parseable.- + Header
diff --git a/doc/html/fusion/sequence/operator/i_o/in.html b/doc/html/fusion/sequence/operator/i_o/in.html index 69a3b51c..62b85cdb 100644 --- a/doc/html/fusion/sequence/operator/i_o/in.html +++ b/doc/html/fusion/sequence/operator/i_o/in.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ stream.
- + Synopsis
@@ -43,7 +43,7 @@ operator>>(IStream& is, Sequence& seq);- + Parameters
@@ -107,7 +107,7 @@
- + Expression Semantics
@@ -123,7 +123,7 @@ e.- + Header
@@ -131,7 +131,7 @@ #include <boost/fusion/include/in.hpp>- + Example
diff --git a/doc/html/fusion/sequence/operator/i_o/out.html b/doc/html/fusion/sequence/operator/i_o/out.html index 8a95450c..7b87b6d3 100644 --- a/doc/html/fusion/sequence/operator/i_o/out.html +++ b/doc/html/fusion/sequence/operator/i_o/out.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ stream.
- + Synopsis
@@ -43,7 +43,7 @@ operator<<(OStream& os, Sequence& seq);- + Parameters
@@ -107,7 +107,7 @@
- + Expression Semantics
@@ -123,7 +123,7 @@ e.- + Header
@@ -131,7 +131,7 @@ #include <boost/fusion/include/out.hpp>- + Example
diff --git a/doc/html/fusion/support/category_of.html b/doc/html/fusion/support/category_of.html index c629aadc..fed08298 100644 --- a/doc/html/fusion/support/category_of.html +++ b/doc/html/fusion/support/category_of.html @@ -26,7 +26,7 @@- + Description
@@ -36,7 +36,7 @@ Sequence Concepts).
- + Synopsis
@@ -50,7 +50,7 @@ }
- + Parameters
@@ -95,7 +95,7 @@
- + Expression Semantics
@@ -161,7 +161,7 @@ of a particular Sequence or Iterator.- + Header
@@ -169,7 +169,7 @@ #include <boost/fusion/include/category_of.hpp>- + Example
diff --git a/doc/html/fusion/support/deduce.html b/doc/html/fusion/support/deduce.html index 685bba16..5534ac30 100644 --- a/doc/html/fusion/support/deduce.html +++ b/doc/html/fusion/support/deduce.html @@ -26,7 +26,7 @@- + Description
@@ -39,7 +39,7 @@ Reference wrappers are removed (see boost::ref).
- + Header
@@ -47,7 +47,7 @@ #include <boost/fusion/include/deduce.hpp>- + Synopsis
@@ -61,7 +61,7 @@ }
- + Example
@@ -82,7 +82,7 @@ }
- + See also
diff --git a/doc/html/fusion/support/deduce_sequence.html b/doc/html/fusion/support/deduce_sequence.html index 78f38eef..6bb74408 100644 --- a/doc/html/fusion/support/deduce_sequence.html +++ b/doc/html/fusion/support/deduce_sequence.html @@ -26,7 +26,7 @@- + Description
@@ -39,7 +39,7 @@ original type as its argument.
- + Header
@@ -47,7 +47,7 @@ #include <boost/fusion/include/deduce_sequence.hpp>- + Synopsis
@@ -61,7 +61,7 @@ }
- + Example
@@ -84,7 +84,7 @@ }
- + See also
diff --git a/doc/html/fusion/support/is_sequence.html b/doc/html/fusion/support/is_sequence.html index d25c9fcc..0ebeb1e0 100644 --- a/doc/html/fusion/support/is_sequence.html +++ b/doc/html/fusion/support/is_sequence.html @@ -26,7 +26,7 @@- + Description
@@ -37,7 +37,7 @@ conforming sequences.
- + Synopsis
@@ -51,7 +51,7 @@ }
- + Parameters
@@ -96,7 +96,7 @@
- + Expression Semantics
@@ -114,7 +114,7 @@ otherwise.- + Header
@@ -122,7 +122,7 @@ #include <boost/fusion/include/is_sequence.hpp>- + Example
diff --git a/doc/html/fusion/support/is_view.html b/doc/html/fusion/support/is_view.html index 0fc85062..c77e4c81 100644 --- a/doc/html/fusion/support/is_view.html +++ b/doc/html/fusion/support/is_view.html @@ -26,7 +26,7 @@- + Description
@@ -40,7 +40,7 @@ specialized to accomodate clients providing Fusion conforming views.
- + Synopsis
@@ -54,7 +54,7 @@ }
- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -116,7 +116,7 @@ otherwise.- + Header
@@ -124,7 +124,7 @@ #include <boost/fusion/include/is_view.hpp>- + Example
diff --git a/doc/html/fusion/support/pair.html b/doc/html/fusion/support/pair.html index 54ec9e47..ad178d19 100644 --- a/doc/html/fusion/support/pair.html +++ b/doc/html/fusion/support/pair.html @@ -26,7 +26,7 @@- + Description
@@ -37,7 +37,7 @@ for example.
- + Synopsis
@@ -61,7 +61,7 @@ make_pair(Second const &);- + Template parameters
@@ -140,7 +140,7 @@
- + Expression Semantics
@@ -320,7 +320,7 @@
- + Header
@@ -328,7 +328,7 @@ #include <boost/fusion/include/pair.hpp>- + Example
diff --git a/doc/html/fusion/support/tag_of.html b/doc/html/fusion/support/tag_of.html index 0c4cea83..edfa094d 100644 --- a/doc/html/fusion/support/tag_of.html +++ b/doc/html/fusion/support/tag_of.html @@ -26,7 +26,7 @@- + Description
@@ -40,7 +40,7 @@ conforming sequences.
- + Synopsis
@@ -54,7 +54,7 @@ }
- + Parameters
@@ -99,7 +99,7 @@
- + Expression Semantics
@@ -113,7 +113,7 @@ with T.- + Header
@@ -121,7 +121,7 @@ #include <boost/fusion/include/tag_of.hpp>- + Example
diff --git a/doc/html/fusion/tuple/class_template_tuple.html b/doc/html/fusion/tuple/class_template_tuple.html index 1acea42b..d7dde30a 100644 --- a/doc/html/fusion/tuple/class_template_tuple.html +++ b/doc/html/fusion/tuple/class_template_tuple.html @@ -48,7 +48,7 @@ in future releases of fusion.- + Synopsis
diff --git a/doc/html/fusion/tuple/class_template_tuple/construction.html b/doc/html/fusion/tuple/class_template_tuple/construction.html index 7701e26a..bf9eb474 100644 --- a/doc/html/fusion/tuple/class_template_tuple/construction.html +++ b/doc/html/fusion/tuple/class_template_tuple/construction.html @@ -27,7 +27,7 @@- + Description
@@ -38,7 +38,7 @@ in this section.
- + Specification
diff --git a/doc/html/fusion/tuple/class_template_tuple/element_access.html b/doc/html/fusion/tuple/class_template_tuple/element_access.html index 3e4bc992..04498d1e 100644 --- a/doc/html/fusion/tuple/class_template_tuple/element_access.html +++ b/doc/html/fusion/tuple/class_template_tuple/element_access.html @@ -31,7 +31,7 @@ access">Element access- + Description
@@ -40,7 +40,7 @@ function to provide access to it's elements by zero based numeric index.
- + Specification
diff --git a/doc/html/fusion/tuple/class_template_tuple/relational_operators.html b/doc/html/fusion/tuple/class_template_tuple/relational_operators.html index fca7de33..30fe370a 100644 --- a/doc/html/fusion/tuple/class_template_tuple/relational_operators.html +++ b/doc/html/fusion/tuple/class_template_tuple/relational_operators.html @@ -30,7 +30,7 @@ operators">Relational operators- + Description
@@ -38,7 +38,7 @@ Tuple provides the standard boolean relational operators.
- + Specification
diff --git a/doc/html/fusion/tuple/class_template_tuple/tuple_creation_functions.html b/doc/html/fusion/tuple/class_template_tuple/tuple_creation_functions.html index 4ac80256..4c503290 100644 --- a/doc/html/fusion/tuple/class_template_tuple/tuple_creation_functions.html +++ b/doc/html/fusion/tuple/class_template_tuple/tuple_creation_functions.html @@ -30,7 +30,7 @@ creation functions">Tuple creation functions- + Description
@@ -40,7 +40,7 @@ functions are described in this section.
- + Specification
diff --git a/doc/html/fusion/tuple/class_template_tuple/tuple_helper_classes.html b/doc/html/fusion/tuple/class_template_tuple/tuple_helper_classes.html index d7cdb301..93daa1bd 100644 --- a/doc/html/fusion/tuple/class_template_tuple/tuple_helper_classes.html +++ b/doc/html/fusion/tuple/class_template_tuple/tuple_helper_classes.html @@ -31,7 +31,7 @@ helper classes">Tuple helper classes- + Description
@@ -40,7 +40,7 @@ tuple size, and the element types.
- + Specification
diff --git a/doc/html/fusion/tuple/pairs.html b/doc/html/fusion/tuple/pairs.html index 270c05d5..005ad4a3 100644 --- a/doc/html/fusion/tuple/pairs.html +++ b/doc/html/fusion/tuple/pairs.html @@ -27,7 +27,7 @@- + Description
@@ -36,7 +36,7 @@ as if it were a 2 element tuple.
- + Specification
diff --git a/doc/html/fusion/view.html b/doc/html/fusion/view.html index e16a12d4..4b029ff9 100644 --- a/doc/html/fusion/view.html +++ b/doc/html/fusion/view.html @@ -44,7 +44,7 @@ to copy and be passed around by value.- + Header
diff --git a/doc/html/fusion/view/filter_view.html b/doc/html/fusion/view/filter_view.html index 68c5a05f..52c8b317 100644 --- a/doc/html/fusion/view/filter_view.html +++ b/doc/html/fusion/view/filter_view.html @@ -26,7 +26,7 @@- + Description
@@ -37,7 +37,7 @@ only those elements for which its predicate evaluates to mpl::true_.
- + Header
@@ -45,7 +45,7 @@ #include <boost/fusion/include/filter_view.hpp>- + Synopsis
@@ -53,7 +53,7 @@ struct filter_view;- + Template parameters
@@ -117,7 +117,7 @@
- + Model of
- + Expression Semantics
@@ -214,7 +214,7 @@
- + Example
diff --git a/doc/html/fusion/view/iterator_range.html b/doc/html/fusion/view/iterator_range.html index 4784246c..8f905d68 100644 --- a/doc/html/fusion/view/iterator_range.html +++ b/doc/html/fusion/view/iterator_range.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ sub-range of its underlying sequence delimited by a pair of iterators.
- + Header
@@ -42,7 +42,7 @@ #include <boost/fusion/include/iterator_range.hpp>- + Synopsis
@@ -50,7 +50,7 @@ struct iterator_range;- + Template parameters
@@ -112,7 +112,7 @@
- + Model of
- @@ -149,7 +149,7 @@
- + Expression Semantics
@@ -224,7 +224,7 @@- + Example
diff --git a/doc/html/fusion/view/joint_view.html b/doc/html/fusion/view/joint_view.html index 4ac0c513..2e812187 100644 --- a/doc/html/fusion/view/joint_view.html +++ b/doc/html/fusion/view/joint_view.html @@ -26,7 +26,7 @@- + Description
@@ -34,7 +34,7 @@ which is a concatenation of two sequences.
- + Header
@@ -42,7 +42,7 @@ #include <boost/fusion/include/joint_view.hpp>- + Synopsis
@@ -50,7 +50,7 @@ struct joint_view;- + Template parameters
@@ -116,7 +116,7 @@
- + Model of
- + Expression Semantics
@@ -217,7 +217,7 @@
- + Example
diff --git a/doc/html/fusion/view/reverse_view.html b/doc/html/fusion/view/reverse_view.html index 3b2f44a2..a54d1a7e 100644 --- a/doc/html/fusion/view/reverse_view.html +++ b/doc/html/fusion/view/reverse_view.html @@ -31,7 +31,7 @@ element will be its first.- + Header
@@ -39,7 +39,7 @@ #include <boost/fusion/include/reverse_view.hpp>- + Synopsis
@@ -47,7 +47,7 @@ struct reverse_view;- + Template parameters
@@ -93,7 +93,7 @@
- + Model of
- + Expression Semantics
@@ -191,7 +191,7 @@- + Example
diff --git a/doc/html/fusion/view/single_view.html b/doc/html/fusion/view/single_view.html index 15c673b9..007d4a75 100644 --- a/doc/html/fusion/view/single_view.html +++ b/doc/html/fusion/view/single_view.html @@ -30,7 +30,7 @@ a value as a single element sequence.- + Header
@@ -38,7 +38,7 @@ #include <boost/fusion/include/single_view.hpp>- + Synopsis
@@ -46,7 +46,7 @@ struct single_view;- + Template parameters
@@ -90,7 +90,7 @@
- + Model of
- + Expression Semantics
@@ -186,7 +186,7 @@
- + Example
diff --git a/doc/html/fusion/view/transform_view.html b/doc/html/fusion/view/transform_view.html index 5d2e4a7e..7e690045 100644 --- a/doc/html/fusion/view/transform_view.html +++ b/doc/html/fusion/view/transform_view.html @@ -35,7 +35,7 @@ Traversal Concept) of its underlying sequence or sequences.- + Header
@@ -43,7 +43,7 @@ #include <boost/fusion/include/transform_view.hpp>- + Synopsis
@@ -61,7 +61,7 @@ struct transform_view;
- + Template parameters
@@ -183,7 +183,7 @@
- + Model of
- @@ -242,7 +242,7 @@
- + Expression Semantics
@@ -337,7 +337,7 @@- + Example
diff --git a/doc/html/fusion/view/zip_view.html b/doc/html/fusion/view/zip_view.html index fd07f5d4..def0b67b 100644 --- a/doc/html/fusion/view/zip_view.html +++ b/doc/html/fusion/view/zip_view.html @@ -26,7 +26,7 @@- + Description
@@ -37,7 +37,7 @@ to the component _sequence_s.
- + Header
@@ -45,7 +45,7 @@ #include <boost/fusion/include/zip_view.hpp>- + Synopsis
@@ -53,7 +53,7 @@ struct zip_view;- + Template parameters
@@ -99,7 +99,7 @@
- + Model of
- @@ -132,7 +132,7 @@
- + Expression Semantics
@@ -204,7 +204,7 @@
- + Example
diff --git a/doc/html/index.html b/doc/html/index.html index 089b7251..e5bd41ce 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -240,7 +240,7 @@
- + Last revised: July 17, 2008 at 23:52:47 GMT
Last revised: July 22, 2008 at 02:00:25 GMT
diff --git a/doc/introduction.qbk b/doc/introduction.qbk index 7bd7d786..066f5a33 100644 --- a/doc/introduction.qbk +++ b/doc/introduction.qbk @@ -74,15 +74,17 @@ sequence specific and need to be implemented N times over N different sequences are now implemented only once. Fusion provides full round compatibility with __mpl__. Fusion sequences are -fully conforming __mpl__ sequences and __mpl__ sequences are fully -compatible with Fusion. You can work with Fusion sequences on __mpl__ if -you wish to work solely on types. In __mpl__, Fusion sequences follow -__mpl__'s sequence-type preserving semantics (i.e. algorithms preserve the -original sequence type. e.g. transforming a vector returns a vector). You -can also convert from an __mpl__ sequence to a Fusion sequence. For -example, there are times when it is convenient to work solely on __mpl__ -using pure __mpl__ sequences, then, convert them to Fusion sequences as a -final step before actual instantiation of real runtime objects with data. -You have the best of both worlds. +fully conforming __mpl__ sequences and __mpl__ sequences are fully compatible +with Fusion. You can work with Fusion sequences on __mpl__ if you wish to work +solely on types [footnote Choose __mpl__ over fusion when doing pure type +calculations. Once the static type calculation is finished, you can instantiate +a fusion sequence (see __conversion__) for the runtime part.]. In __mpl__, +Fusion sequences follow __mpl__'s sequence-type preserving semantics (i.e. +algorithms preserve the original sequence type. e.g. transforming a vector +returns a vector). You can also convert from an __mpl__ sequence to a Fusion +sequence. For example, there are times when it is convenient to work solely on +__mpl__ using pure __mpl__ sequences, then, convert them to Fusion sequences as +a final step before actual instantiation of real runtime objects with data. You +have the best of both worlds. [endsect]