Files
boost_fusion/doc/sequence.qbk

2966 lines
74 KiB
Plaintext
Raw Normal View History

[section Sequence]
2007-04-10 22:27:41 +00:00
Like __mpl__, the Sequence is a fundamental concept in Fusion. A Sequence
may or may not actually store or contain data. __containers__ are sequences
that hold data. __views__, on the other hand, are sequences that do not
store any data. Instead, they are proxies that impart an alternative
presentation over another sequence. All models of Sequence have an
associated __iterator__ type that can be used to iterate through the
Sequence's elements.
[heading Header]
#include <boost/fusion/sequence.hpp>
[section Concepts]
2007-04-10 22:27:41 +00:00
Fusion Sequences are organized into a hierarchy of concepts.
[heading Traversal]
2007-04-10 22:27:41 +00:00
Fusion's sequence traversal related concepts parallel Fusion's
__iterator_concepts__. __forward_sequence__ is the most basic concept.
__bidirectional_sequence__ is a refinement of __forward_sequence__.
__random_access_sequence__ is a refinement of __bidirectional_sequence__.
These concepts pertain to sequence traversal.
[heading Associativity]
2007-04-10 22:27:41 +00:00
The __associative_sequence__ concept is orthogonal to traversal. An Associative
Sequence allows efficient retrieval of elements based on keys.
[section Forward Sequence]
[heading Description]
2007-04-10 22:27:41 +00:00
A Forward Sequence is a Sequence whose elements are arranged in a definite
order. The ordering is guaranteed not to change from iteration to
iteration. The requirement of a definite ordering allows the definition of
element-by-element equality (if the container's element type is Equality
Comparable) and of lexicographical ordering (if the container's element
type is LessThan Comparable).
[variablelist Notation
[[`s`] [A Forward Sequence]]
[[`S`] [A Forward Sequence type]]
[[`o`] [An arbitrary object]]
[[`e`] [A Sequence element]]
]
[heading Valid Expressions]
For any Forward Sequence the following expressions must be valid:
[table
[[Expression] [Return type] [Type Requirements] [Runtime Complexity]]
[[`__begin__(s)`] [__forward_iterator__] [] [Constant]]
[[`__end__(s)`] [__forward_iterator__] [] [Constant]]
[[`__size__(s)`] [__mpl_integral_constant__.
Convertible to int.] [] [Constant]]
[[`__empty__(s)`] [__mpl_boolean_constant__.
Convertible to bool.] [] [Constant]]
[[`__front__(s)`] [Any type] [] [Constant]]
[[`__front__(s) = o`] [Any type] [`s` is mutable and
2007-04-10 22:27:41 +00:00
`e = o`, where `e`
is the first element
in the sequence, is
a valid expression.] [Constant]]
]
[heading Result Type Expressions]
[table
[[Expression] [Compile Time Complexity]]
[[`__result_of_begin__<S>::type`] [Amortized constant time]]
[[`__result_of_end__<S>::type`] [Amortized constant time]]
[[`__result_of_size__<S>::type`] [Unspecified]]
[[`__result_of_empty__<S>::type`] [Constant time]]
[[`__result_of_front__<S>::type`] [Amortized constant time]]
]
[heading Expression Semantics]
[table
[[Expression] [Semantics]]
[[`__begin__(s)`] [An iterator to the first element of the sequence; see __begin__.]]
[[`__end__(s)`] [A past-the-end iterator to the sequence; see __end__.]]
[[`__size__(s)`] [The size of the sequence; see __size__.]]
2007-04-10 22:27:41 +00:00
[[`__empty__(s)`] [A boolean Integral Constant `c` such that
`c::value == true` if and only if the sequence
is empty; see __empty__.]]
[[`__front__(s)`] [The first element in the sequence; see __front__.]]
]
[heading Invariants]
For any Forward Sequence s the following invariants always hold:
* `[__begin__(s), __end__(s))` is always a valid range.
2007-04-10 22:27:41 +00:00
* An __algorithm__ that iterates through the range `[__begin__(s), __end__(s))`
will pass through every element of `s` exactly once.
* `__begin__(s)` is identical to `__end__(s))` if and only if `s` is empty.
2007-04-10 22:27:41 +00:00
* Two different iterations through `s` will access its elements in
the same order.
[heading Models]
* __std_pair__
* __boost_array__
* __vector__
* __cons__
* __list__
* __set__
* __map__
* __single_view__
* __filter_view__
* __iterator_range__
* __joint_view__
* __transform_view__
* __reverse_view__
* __zip_view__
[endsect]
[section Bidirectional Sequence]
[heading Description]
2007-04-10 22:27:41 +00:00
A Bidirectional Sequence is a __forward_sequence__ whose iterators model
__bidirectional_iterator__.
[heading Refinement of]
__forward_sequence__
[variablelist Notation
[[`s`] [A Forward Sequence]]
[[`S`] [A Forward Sequence type]]
[[`o`] [An arbitrary object]]
[[`e`] [A Sequence element]]
]
[heading Valid Expressions]
2007-04-10 22:27:41 +00:00
In addition to the requirements defined in __forward_sequence__, for any
Bidirectional Sequence the following must be met:
[table
[[Expression] [Return type] [Type Requirements] [Runtime Complexity]]
[[`__begin__(s)`] [__bidirectional_iterator__] [] [Constant]]
[[`__end__(s)`] [__bidirectional_iterator__] [] [Constant]]
[[`__back__(s)`] [Any type] [] [Constant]]
[[`__back__(s) = o`] [Any type] [`s` is mutable and
2007-04-10 22:27:41 +00:00
`e = o`, where `e`
is the first element
in the sequence, is
a valid expression.] [Constant]]
]
[heading Result Type Expressions]
2007-04-10 22:27:41 +00:00
[table
[[Expression] [Compile Time Complexity]]
[[`__result_of_begin__<S>::type`] [Amortized constant time]]
[[`__result_of_end__<S>::type`] [Amortized constant time]]
[[`__result_of_back__<S>::type`] [Amortized constant time]]
]
[heading Expression Semantics]
2007-04-10 22:27:41 +00:00
The semantics of an expression are defined only where they differ from, or
are not defined in __forward_sequence__.
2007-04-10 22:27:41 +00:00
[table
[[Expression] [Semantics]]
[[`__back__(s)`] [The last element in the sequence; see __back__.]]
]
[heading Models]
* __std_pair__
* __boost_array__
* __vector__
* __reverse_view__
* __iterator_range__ (where adapted sequence is a Bidirectional Sequence)
* __transform_view__ (where adapted sequence is a Bidirectional Sequence)
* __zip_view__ (where adapted sequences are models Bidirectional Sequence)
[endsect]
[section Random Access Sequence]
[heading Description]
2007-04-10 22:27:41 +00:00
A Random Access Sequence is a __bidirectional_sequence__ whose iterators
model __random_access_iterator__. It guarantees constant time access to
arbitrary sequence elements.
[heading Refinement of]
__bidirectional_sequence__
[variablelist Notation
[[`s`] [A Random Access Sequence]]
[[`S`] [A Random Access Sequence type]]
2007-04-02 15:45:59 +00:00
[[`N`] [An __mpl_integral_constant__]]
[[`o`] [An arbitrary object]]
[[`e`] [A Sequence element]]
]
[heading Valid Expressions]
2007-04-10 22:27:41 +00:00
In addition to the requirements defined in __bidirectional_sequence__, for
any Random Access Sequence the following must be met:
[table
[[Expression] [Return type] [Type Requirements] [Runtime Complexity]]
[[`__begin__(s)`] [__random_access_iterator__] [] [Constant]]
[[`__end__(s)`] [__random_access_iterator__] [] [Constant]]
[[`__at__<N>(s)`] [Any type] [] [Constant]]
[[`__at__<N>(s) = o`] [Any type] [`s` is mutable and
2007-04-10 22:27:41 +00:00
`e = o`, where `e`
is the first element
in the sequence, is
a valid expression.] [Constant]]
]
[heading Result Type Expressions]
2007-04-10 22:27:41 +00:00
[table
[[Expression] [Compile Time Complexity]]
[[`__result_of_begin__<S>::type`] [Amortized constant time]]
[[`__result_of_end__<S>::type`] [Amortized constant time]]
[[`__result_of_at__<S, N>::type`] [Amortized constant time]]
[[`__result_of_value_at__<S, N>::type`] [Amortized constant time]]
]
2007-04-10 22:27:41 +00:00
[blurb __note__ `__result_of_at__<S, N>` returns the actual type returned by
`__at__<N>(s)`. In most cases, this is a reference. Hence, there is no way to
know the exact element type using `__result_of_at__<S, N>`.The element at `N`
may actually be a reference to begin with. For this purpose, you can use
`__result_of_value_at__<S, N>`.]
[heading Expression Semantics]
2007-04-10 22:27:41 +00:00
The semantics of an expression are defined only where they differ from, or
are not defined in __bidirectional_sequence__.
2007-04-10 22:27:41 +00:00
[table
[[Expression] [Semantics]]
[[`__at__<N>(s)`] [The Nth element from the beginning of the sequence; see __at__.]]
]
[heading Models]
* __std_pair__
* __boost_array__
* __vector__
* __reverse_view__
* __iterator_range__ (where adapted sequence is a Random Access Sequence)
* __transform_view__ (where adapted sequence is a Random Access Sequence)
* __zip_view__ (where adapted sequences are models Random Access Sequence)
[endsect]
[section Associative Sequence]
[heading Description]
2007-04-10 22:27:41 +00:00
An Associative Sequence allows efficient retrieval of elements based on keys.
Like associative sequences in __mpl__, and unlike associative containers in
__stl__, Fusion associative sequences have no implied ordering relation.
Instead, type identity is used to impose an equivalence relation on keys, and
the order in which sequence elements are traversed during iteration is left
unspecified. In addition, unlike __stl__, Associative Sequences have mutable
iterators. This is due to the fact that there is no associated ordering relation
and the runtime value of the keys themselves do not have any effect on the
associativity of the sequence.
[variablelist Notation
[[`s`] [An Associative Sequence]]
[[`S`] [An Associative Sequence type]]
[[`K`] [An arbitrary /key/ type]]
[[`o`] [An arbitrary object]]
[[`e`] [A Sequence element]]
]
[heading Valid Expressions]
For any Associative Sequence the following expressions must be valid:
[table
[[Expression] [Return type] [Type Requirements] [Runtime Complexity]]
[[`__has_key__<K>(s)`] [__mpl_boolean_constant__.
Convertible to bool.] [] [Constant]]
[[`__at_key__<K>(s)`] [Any type] [] [Constant]]
[[`__at_key__<K>(s) = o`] [Any type] [`s` is mutable and
2007-04-10 22:27:41 +00:00
`e = o`, where `e`
is the first element
in the sequence, is
a valid expression.] [Constant]]
]
[heading Result Type Expressions]
2007-04-10 22:27:41 +00:00
[table
[[Expression] [Compile Time Complexity]]
[[`__result_of_has_key__<S, K>::type`] [Amortized constant time]]
[[`__result_of_at_key__<S, K>::type`] [Amortized constant time]]
[[`__result_of_value_at_key__<S, K>::type`] [Amortized constant time]]
]
2007-04-10 22:27:41 +00:00
[blurb __note__ `__result_of_at_key__<S, K>` returns the actual type returned
by `__at_key__<K>(s)`. In most cases, this is a reference. Hence, there is no
way to know the exact element type using `__result_of_at_key__<S, K>`.The
element at `K` may actually be a reference to begin with. For this purpose,
you can use `__result_of_value_at_key__<S, N>`.]
[heading Expression Semantics]
2007-04-10 22:27:41 +00:00
[table
[[Expression] [Semantics]]
2007-04-10 22:27:41 +00:00
[[`__has_key__<K>(s)`] [A boolean Integral Constant `c` such that
`c::value == true` if and only if there is
one or more elements with the key `k` in `s`;
see __has_key__.]]
2007-04-10 22:27:41 +00:00
[[`__at_key__<K>(s)`] [The element associated with the key
`K` in the sequence `s`; see __at__.]]
]
[heading Models]
* __set__
* __map__
[endsect]
[endsect]
[section Intrinsic]
Intrinsic form the essential interface of every Fusion __sequence__. __stl__
2007-04-10 22:27:41 +00:00
counterparts of these functions are usually implemented as member
functions. Intrinsic functions, unlike __algorithms__, are not generic
across the full __sequence__ repertoire. They need to be implemented for
each Fusion __sequence__[footnote In practice, many of intrinsic functions
have default implementations that will work in majority of cases].
[heading Header]
#include <boost/fusion/sequence/intrinsic.hpp>
[section Functions]
[section begin]
[heading Description]
Returns an iterator pointing to the first element in the sequence.
[heading Synopsis]
template <typename Sequence>
typename __result_of_begin__<Sequence>::type
begin(Sequence& seq);
template <typename Sequence>
typename __result_of_begin__<Sequence const>::type
begin(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __forward_sequence__] [The sequence we wish to get an iterator from.]]
]
[heading Expression Semantics]
begin(seq);
2007-04-10 22:27:41 +00:00
[*Return type]: __forward_iterator__ if `seq` is a __forward_sequence__
else, __bidirectional_iterator__ if `seq` is a __bidirectional_sequence__
else, __random_access_iterator__ if `seq` is a __random_access_sequence__.
[*Semantics]: Returns an iterator pointing to the first element in the sequence.
[heading Header]
#include <boost/fusion/sequence/intrinsic/begin.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(__deref__(begin(v)) == 1);
[endsect]
[section end]
[heading Description]
Returns an iterator pointing to one element past the end of the sequence.
[heading Synopsis]
template <typename Sequence>
typename __result_of_end__<Sequence>::type
end(Sequence& seq);
template <typename Sequence>
typename __result_of_end__<Sequence const>::type
end(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __forward_sequence__] [The sequence we wish to get an iterator from.]]
]
[heading Expression Semantics]
end(seq);
2007-04-10 22:27:41 +00:00
[*Return type]: __forward_iterator__ if `seq` is a __forward_sequence__
else, __bidirectional_iterator__ if `seq` is a __bidirectional_sequence__
else, __random_access_iterator__ if `seq` is a __random_access_sequence__.
2007-04-10 22:27:41 +00:00
[*Semantics]: Returns an iterator pointing to one element past the end of
the sequence.
[heading Header]
#include <boost/fusion/sequence/intrinsic/end.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(__deref__(__prior__(end(v))) == 3);
[endsect]
[section empty]
[heading Description]
2007-04-10 22:27:41 +00:00
Returns a type convertible to `bool` that evaluates to `true` if the
sequence is empty, else, evaluates to `false`.
[heading Synopsis]
template <typename Sequence>
typename __result_of_empty__<Sequence>::type
empty(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __forward_sequence__] [The sequence we wish to investigate.]]
]
[heading Expression Semantics]
empty(seq);
[*Return type]: Convertible to `bool`.
2007-04-10 22:27:41 +00:00
[*Semantics]: Evaluates to `true` if the sequence is empty, else, evaluates
to `false`.
[heading Header]
#include <boost/fusion/sequence/intrinsic/empty.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(empty(v) == false);
[endsect]
[section front]
[heading Description]
Returns the first element in the sequence.
[heading Synopsis]
template <typename Sequence>
typename __result_of_front__<Sequence>::type
front(Sequence& seq);
template <typename Sequence>
typename __result_of_front__<Sequence const>::type
front(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __forward_sequence__] [The sequence we wish to investigate.]]
]
[heading Expression Semantics]
front(seq);
2007-04-10 22:27:41 +00:00
[*Return type]: Returns a reference to the first element in the sequence
`seq` if `seq` is mutable and `e = o`, where `e` is the first element in
the sequence, is a valid expression. Else, returns a type convertable to
the first element in the sequence.
[*Precondition]: `__empty__(seq) == false`
[*Semantics]: Returns the first element in the sequence.
[heading Header]
#include <boost/fusion/sequence/intrinsic/front.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(front(v) == 1);
[endsect]
[section back]
[heading Description]
Returns the last element in the sequence.
[heading Synopsis]
template <typename Sequence>
typename __result_of_back__<Sequence>::type
back(Sequence& seq);
template <typename Sequence>
typename __result_of_back__<Sequence const>::type
back(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __bidirectional_sequence__] [The sequence we wish to investigate.]]
]
[heading Expression Semantics]
back(seq);
2007-04-10 22:27:41 +00:00
[*Return type]: Returns a reference to the last element in the sequence
`seq` if `seq` is mutable and `e = o`, where `e` is the last element in the
sequence, is a valid expression. Else, returns a type convertable to the
last element in the sequence.
[*Precondition]: `__empty__(seq) == false`
[*Semantics]: Returns the last element in the sequence.
[heading Header]
#include <boost/fusion/sequence/intrinsic/back.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(back(v) == 3);
[endsect]
[section size]
[heading Description]
2007-04-10 22:27:41 +00:00
Returns a type convertible to `int` that evaluates the number of elements
in the sequence.
[heading Synopsis]
template <typename Sequence>
typename __result_of_size__<Sequence>::type
size(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __forward_sequence__] [The sequence we wish to investigate.]]
]
[heading Expression Semantics]
size(seq);
[*Return type]: Convertible to `int`.
[*Semantics]: Returns the number of elements in the sequence.
[heading Header]
#include <boost/fusion/sequence/intrinsic/size.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(size(v) == 3);
[endsect]
[section at]
[heading Description]
Returns the N-th element from the beginning of the sequence.
[heading Synopsis]
template <typename N, typename Sequence>
typename __result_of_at__<Sequence, N>::type
at(Sequence& seq);
template <typename N, typename Sequence>
typename __result_of_at__<Sequence const, N>::type
at(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __random_access_sequence__] [The sequence we wish to investigate.]]
2007-04-10 22:27:41 +00:00
[[`N`] [An __mpl_integral_constant__] [An index from the beginning of the
sequence.]]
]
[heading Expression Semantics]
at<N>(seq);
2007-04-10 22:27:41 +00:00
[*Return type]: Returns a reference to the N-th element from the beginning
of the sequence `seq` if `seq` is mutable and `e = o`, where `e` is the N-th
element from the beginning of the sequence, is a valid expression. Else,
returns a type convertable to the N-th element from the beginning of the
sequence.
[*Precondition]: `0 <= N::value < __size__(s)`
[*Semantics]: Equivalent to
__deref__(__advance__<N>(__begin__(s)))
[heading Header]
#include <boost/fusion/sequence/intrinsic/at.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(at<mpl::int_<1> >(v) == 2);
[endsect]
[section at_c]
[heading Description]
Returns the N-th element from the beginning of the sequence.
[heading Synopsis]
template <int N, typename Sequence>
typename __result_of_at_c__<Sequence, N>::type
at_c(Sequence& seq);
template <int N, typename Sequence>
typename __result_of_at_c__<Sequence const, N>::type
at_c(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __random_access_sequence__] [The sequence we wish to investigate.]]
2007-04-10 22:27:41 +00:00
[[`N`] [An integral constant] [An index from the beginning of the
sequence.]]
]
[heading Expression Semantics]
at_c<N>(seq);
2007-04-10 22:27:41 +00:00
[*Return type]: Returns a reference to the N-th element from the beginning
of the sequence `seq` if `seq` is mutable and `e = o`, where `e` is the N-th
element from the beginning of the sequence, is a valid expression. Else,
returns a type convertable to the N-th element from the beginning of the
sequence.
[*Precondition]: `0 <= N < __size__(s)`
[*Semantics]: Equivalent to
__deref__(__advance__<N>(__begin__(s)))
[heading Header]
#include <boost/fusion/sequence/intrinsic/at_c.hpp>
[heading Example]
__vector__<int, int, int> v(1, 2, 3);
assert(at_c<1>(v) == 2);
[endsect]
[section has_key]
[heading Description]
2007-04-10 22:27:41 +00:00
Returns a type convertible to `bool` that evaluates to `true` if the
sequence contains an element associated with a Key, else, evaluates to
`false`.
[heading Synopsis]
template <typename Key, typename Sequence>
typename __result_of_has_key__<Sequence, Key>::type
has_key(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __associative_sequence__] [The sequence we wish to investigate.]]
[[`Key`] [Any type] [The queried key.]]
]
[heading Expression Semantics]
has_key<Key>(seq);
[*Return type]: Convertible to `bool`.
2007-04-10 22:27:41 +00:00
[*Semantics]: Evaluates to `true` if the sequence contains an element
associated with Key, else, evaluates to `false`.
[heading Header]
#include <boost/fusion/sequence/intrinsic/has_key.hpp>
[heading Example]
__set__<int, char, bool> s(1, 'x', true);
assert(has_key<char>(s) == true);
[endsect]
[section at_key]
[heading Description]
Returns the element associated with a Key from the sequence.
[heading Synopsis]
template <typename Key, typename Sequence>
typename __result_of_at_key__<Sequence, Key>::type
at_key(Sequence& seq);
template <typename Key, typename Sequence>
typename __result_of_at_key__<Sequence const, Key>::type
at_key(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [Model of __associative_sequence__] [The sequence we wish to investigate.]]
[[`Key`] [Any type] [The queried key.]]
]
[heading Expression Semantics]
at_key<Key>(seq);
2007-04-10 22:27:41 +00:00
[*Return type]: Returns a reference to the element associated with Key from
the sequence `seq` if `seq` is mutable and `e = o`, where `e` is the
element associated with Key, is a valid expression. Else, returns a type
convertable to the element associated with Key.
[*Precondition]: `has_key<Key>(seq) == true`
[*Semantics]: Returns the element associated with Key.
[heading Header]
#include <boost/fusion/sequence/intrinsic/at_key.hpp>
[heading Example]
__set__<int, char, bool> s(1, 'x', true);
assert(at_key<char>(s) == 'x');
[endsect]
2007-05-02 22:47:23 +00:00
[section swap]
[heading Description]
Performs an element by element swap of the elements in 2 sequences.
[heading Synopsis]
template<typename Seq1, typename Seq2>
void swap(Seq1& seq1, Seq2& seq2);
[heading Parameters]
[table
[[Parameters] [Requirement] [Description]]
[[`seq1`, `seq2`] [Models of __forward_sequence__][The sequences whos elements we wish to swap.]]
]
[heading Expression Semantics]
swap(seq1, seq2);
[*Return type]: `void`
[*Precondition]: `__size__(seq1) == __size__(seq2)`
[*Semantics]: Calls `swap(a1, b1)` for corresponding elements in `seq1` and `seq2`.
/sequence/intrinsic/swap.hpp>
2007-05-02 22:47:23 +00:00
[heading Example]
__vector__<int, std::string> v1(1, "hello"), v2(2, "world");
swap(v1, v2);
assert(v1 == __make_vector__(2, "world"));
assert(v2 == __make_vector__(1, "hello"));
[endsect]
[endsect]
[section Metafunctions]
[section begin]
[heading Description]
Returns the result type of __begin__.
[heading Synopsis]
template<typename Seq>
struct begin
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
]
[heading Expression Semantics]
result_of::begin<Seq>::type
2007-04-10 22:27:41 +00:00
[*Return type]: An iterator modelling the same traversal concept as `Seq`.
[*Semantics]: Returns the type of an iterator to the first element of `Seq`.
/sequence/intrinsic/begin.hpp>
[heading Example]
typedef __vector__<int> vec;
typedef __result_of_begin__<vec>::type it;
BOOST_MPL_ASSERT((boost::is_same<__result_of_deref__<it>::type, int&>))
[endsect]
[section end]
[heading Description]
Returns the result type of __end__.
[heading Synopsis]
template<typename Seq>
struct end
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
]
[heading Expression Semantics]
result_of::end<Seq>::type
[*Return type]: A model of the same traversal concept as `Seq`.
[*Semantics]: Returns the type of an iterator one past the end of `Seq`.
/sequence/intrinsic/end.hpp>
[heading Example]
typedef __vector__<int> vec;
typedef __result_of_prior__<__result_of_end__<vec>::type>::type first;
BOOST_MPL_ASSERT((__result_of_equal_to__<first, __result_of_begin__<vec>::type>))
[endsect]
[section empty]
[heading Description]
Returns the result type of __empty__.
[heading Synopsis]
template<typename Seq>
struct empty
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
]
[heading Expression Semantics]
result_of::empty<Seq>::type
[*Return type]: An __mpl_integral_constant__
[*Semantics]: Returns `mpl::true_` if `Seq` has zero elements, `mpl::false_` otherwise.
/sequence/intrinsic/empty.hpp>
[heading Example]
typedef __vector__<> empty_vec;
typedef __vector__<int,float,char> vec;
BOOST_MPL_ASSERT((__result_of_empty__<empty_vec>));
BOOST_MPL_ASSERT_NOT((__result_of_empty__<vec>));
[endsect]
[section front]
[heading Description]
Returns the result type of __front__.
[heading Synopsis]
template<typename Seq>
struct front
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
]
[heading Expression Semantics]
result_of::front<Seq>::type
[*Return type]: Any type
[*Semantics]: The type returned by dereferencing an iterator to the first element in `Seq`. Equivalent to `__result_of_deref__<__result_of_begin__<Seq>::type>::type`.
/sequence/intrinsic/front.hpp>
[heading Example]
typedef __vector__<int,char> vec;
BOOST_MPL_ASSERT((boost::is_same<__result_of_front__<vec>::type, int&>));
[endsect]
[section back]
[heading Description]
Returns the result type of __back__.
[heading Synopsis]
template<typename Seq>
struct back
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
]
[heading Expression Semantics]
result_of::back<Seq>::type
[*Return type]: Any type
[*Semantics]: The type returned by dereferencing an iterator to the last element in the sequence. Equivalent to `__result_of_deref__<__result_of_prior__<__result_of_end__<Seq>::type>::type>::type`.
/sequence/intrinsic/back.hpp>
[heading Example]
typedef __vector__<int,char> vec;
BOOST_MPL_ASSERT((boost::is_same<__result_of_back__<vec>::type, char&>));
[endsect]
[section size]
[heading Description]
Returns the result type of __size__.
[heading Synopsis]
template<typename Seq>
struct size
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
]
[heading Expression Semantics]
result_of::size<Seq>::type
[*Return type]: An __mpl_integral_constant__.
[*Semantics]: Returns the number of elements in `Seq`.
/sequence/intrinsic/size.hpp>
[heading Example]
typedef __vector__<int,float,char> vec;
typedef __result_of_size__<vec>::type size_mpl_integral_constant;
BOOST_MPL_ASSERT_RELATION(size_mpl_integral_constant::value, ==, 3);
[endsect]
[section at]
[heading Description]
2007-04-10 22:27:41 +00:00
Returns the result type of __at__[footnote __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 to get
the actual element type, use __result_of_value_at__].
[heading Synopsis]
template<
typename Seq,
typename N>
struct at
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
[[`N`][An __mpl_integral_constant__][Index of element]]
]
[heading Expression Semantics]
result_of::at<Seq, N>::type
[*Return type]: Any type.
[*Semantics]: Returns the result type of using __at__ to access the `N`th element of `Seq`.
/sequence/intrinsic/at.hpp>
[heading Example]
typedef __vector__<int,float,char> vec;
BOOST_MPL_ASSERT((boost::is_same<__result_of_at__<vec, boost::mpl::int_<1> >::type, float&>));
[endsect]
[section at_c]
[heading Description]
2007-04-10 22:27:41 +00:00
Returns the result type of __at_c__[footnote __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 to
get the actual element type, use __result_of_value_at_c__].
[heading Synopsis]
template<
typename Seq,
int M>
struct at_c
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
[[`M`][Positive integer index][Index of element]]
]
[heading Expression Semantics]
result_of::at_c<Seq, M>::type
[*Return type]: Any type
[*Semantics]: Returns the result type of using __at_c__ to access the `M`th element of `Seq`.
/sequence/intrinsic/at.hpp>
[heading Example]
typedef __vector__<int,float,char> vec;
BOOST_MPL_ASSERT((boost::is_same<__result_of_at_c__<vec, 1>::type, float&>));
[endsect]
[section value_at]
[heading Description]
Returns the actual type at a given index from the __sequence__.
[heading Synopsis]
template<
typename Seq,
typename N>
struct value_at
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
[[`N`][An __mpl_integral_constant__][Index of element]]
]
[heading Expression Semantics]
result_of::value_at<Seq, N>::type
[*Return type]: Any type.
[*Semantics]: Returns the actual type at the `N`th element of `Seq`.
/sequence/intrinsic/value_at.hpp>
[heading Example]
typedef __vector__<int,float,char> vec;
BOOST_MPL_ASSERT((boost::is_same<__result_of_value_at__<vec, boost::mpl::int_<1> >::type, float>));
[endsect]
[section value_at_c]
[heading Description]
Returns the actual type at a given index from the __sequence__.
[heading Synopsis]
template<
typename Seq,
int M>
struct value_at_c
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
[[`M`][Positive integer index][Index of element]]
]
[heading Expression Semantics]
result_of::value_at_c<Seq, M>::type
[*Return type]: Any type
[*Semantics]: Returns the actual type at the `M`th element of `Seq`.
/sequence/intrinsic/value_at.hpp>
[heading Example]
typedef __vector__<int,float,char> vec;
BOOST_MPL_ASSERT((boost::is_same<__result_of_value_at_c__<vec, 1>::type, float>));
[endsect]
[section has_key]
[heading Description]
Returns the result type of __has_key__.
[heading Synopsis]
template<
typename Seq,
typename Key>
struct has_key
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
[[`Key`][Any type][Key type]]
]
[heading Expression Semantics]
result_of::has_key<Seq, Key>::type
[*Return type]: An __mpl_integral_constant__.
[*Semantics]: Returns `mpl::true_` if `Seq` contains an element with key type `Key`, returns `mpl::false_` otherwise.
/sequence/intrinsic/has_key.hpp>
[heading Example]
typedef __map__<__pair__<int, char>, __pair__<char, char>, __pair__<double, char> > mymap;
BOOST_MPL_ASSERT((__result_of_has_key__<mymap, int>));
BOOST_MPL_ASSERT_NOT((__result_of_has_key__<mymap, void*>));
[endsect]
[section at_key]
[heading Description]
2007-04-10 22:27:41 +00:00
Returns the result type of __at_key__[footnote __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 want to get the actual element type, use __result_of_value_at_key__].
[heading Synopsis]
template<
typename Seq,
typename Key>
struct at_key
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
[[`Key`][Any type][Key type]]
]
[heading Expression Semantics]
result_of::at_key<Seq, Key>::type
[*Return type]: Any type.
[*Semantics]: Returns the result of using __at_key__ to access the element with key type `Key` in `Seq`.
/sequence/intrinsic/at_key.hpp>
[heading Example]
typedef __map__<__pair__<int, char>, __pair__<char, char>, __pair__<double, char> > mymap;
BOOST_MPL_ASSERT((boost::is_same<__result_of_at_key__<mymap, int>::type, char&>));
[endsect]
[section value_at_key]
[heading Description]
Returns the actual element type associated with a Key from the __sequence__.
[heading Synopsis]
template<
typename Seq,
typename Key>
struct value_at_key
{
typedef __unspecified__ type;
};
[table Parameters
[[Parameter] [Requirement] [Description]]
[[`Seq`][A model of __forward_sequence__][Argument sequence]]
[[`Key`][Any type][Key type]]
]
[heading Expression Semantics]
result_of::value_at_key<Seq, Key>::type
[*Return type]: Any type.
2007-04-10 22:27:41 +00:00
[*Semantics]: Returns the actual element type associated with key type
`Key` in `Seq`.
/sequence/intrinsic/value_at_key.hpp>
[heading Example]
typedef __map__<__pair__<int, char>, __pair__<char, char>, __pair__<double, char> > mymap;
BOOST_MPL_ASSERT((boost::is_same<__result_of_at_key__<mymap, int>::type, char>));
[endsect]
2007-05-02 22:47:23 +00:00
[section swap]
[heading Description]
Returns the return type of swap.
[heading Synopsis]
template<typename Seq1, typename Seq2>
struct swap
{
typedef void type;
};
[table Parameters
[[Parameters] [Requirement] [Description]]
[[`Seq1`, `Seq2`][Models of __forward_sequence__][The sequences being swapped]]
]
[heading Expression Semantics]
result_of::swap<Seq1, Seq2>::type
[*Return type]: `void`.
[*Semantics]: Always returns `void`.
/sequence/intrinsic/swap.hpp>
2007-05-02 22:47:23 +00:00
[endsect]
[endsect]
[endsect]
[section Generation]
2007-04-10 22:27:41 +00:00
These are the functions that you can use to generate various forms of
__containers__ from elemental values.
[heading Header]
#include <boost/fusion/sequence/generation.hpp>
[section Functions]
2007-04-10 22:27:41 +00:00
[section make_list]
[heading Description]
Create a __list__ from one or more values.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
typename __result_of_make_list__<T0, T1,... TN>::type
make_list(T0 const& x0, T1 const& x1... TN const& xN);
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_LIST_SIZE` elements, where
`FUSION_MAX_LIST_SIZE` is a user definable predefined maximum that defaults
to `10`. You may define the preprocessor constant `FUSION_MAX_LIST_SIZE`
before including any Fusion header to change the default. Example:
#define FUSION_MAX_LIST_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`x0, x1,... xN`] [Instances of `T0, T1,... TN`] [The arguments to `make_list`]]
]
[heading Expression Semantics]
make_list(x0, x1,... xN);
[*Return type]: __result_of_make_list__`<T0, T1,... TN>::type`
[*Semantics]: Create a __list__ from `x0, x1,... xN`.
[heading Header]
#include <boost/fusion/sequence/generation/make_list.hpp>
[heading Example]
make_list(123, "hello", 12.5)
2007-04-10 22:27:41 +00:00
[heading See also]
__note_boost_ref__
[endsect]
[section make_cons]
[heading Description]
2007-04-10 22:27:41 +00:00
Create a __cons__ from `car` (/head/) and optional `cdr` (/tail/).
[heading Synopsis]
template <typename Car>
typename __result_of_make_cons__<Car>::type
make_cons(Car const& car);
template <typename Car, typename Cdr>
typename __result_of_make_cons__<Car, Cdr>::type
make_cons(Car const& car, Cdr const& cdr);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`car`] [Instance of `Car`] [The list's head]]
[[`cdr`] [Instance of `Cdr`] [The list's tail (optional)]]
]
[heading Expression Semantics]
make_cons(car, cdr);
[*Return type]: __result_of_make_cons__`<Car, Cdr>::type` or
__result_of_make_cons__`<Car>::type`
2007-04-10 22:27:41 +00:00
[*Semantics]: Create a __cons__ from `car` (/head/) and optional `cdr` (/tail/).
[heading Header]
#include <boost/fusion/sequence/generation/make_cons.hpp>
[heading Example]
make_cons('x', make_cons(123))
2007-04-10 22:27:41 +00:00
[heading See also]
__note_boost_ref__
[endsect]
[section make_vector]
[heading Description]
Create a __vector__ from one or more values.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
typename __result_of_make_vector__<T0, T1,... TN>::type
make_vector(T0 const& x0, T1 const& x1... TN const& xN);
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE` 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` before including any Fusion header to change the
default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`x0, x1,... xN`] [Instances of `T0, T1,... TN`] [The arguments to `make_vector`]]
]
[heading Expression Semantics]
make_vector(x0, x1,... xN);
[*Return type]: __result_of_make_vector__`<T0, T1,... TN>::type`
[*Semantics]: Create a __vector__ from `x0, x1,... xN`.
[heading Header]
#include <boost/fusion/sequence/generation/make_vector.hpp>
[heading Example]
make_vector(123, "hello", 12.5)
2007-04-10 22:27:41 +00:00
[heading See also]
__note_boost_ref__
[endsect]
[section make_set]
[heading Description]
Create a __set__ from one or more values.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
typename __result_of_make_set__<T0, T1,... TN>::type
make_set(T0 const& x0, T1 const& x1... TN const& xN);
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE`[footnote
`set` is implemented in terms of the vector. That is why we reuse
2007-04-10 22:27:41 +00:00
`FUSION_MAX_VECTOR_SIZE`] 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` before including any Fusion
header to change the default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`x0, x1,... xN`] [Instances of `T0, T1,... TN`] [The arguments to `make_set`]]
]
[heading Expression Semantics]
make_set(x0, x1,... xN);
[*Return type]: __result_of_make_set__`<T0, T1,... TN>::type`
[*Semantics]: Create a __set__ from `x0, x1,... xN`.
[*Precondition]: There may be no duplicate key types.
[heading Header]
#include <boost/fusion/sequence/generation/make_set.hpp>
[heading Example]
make_set(123, "hello", 12.5)
2007-04-10 22:27:41 +00:00
[heading See also]
__note_boost_ref__
[endsect]
[section make_map]
[heading Description]
2007-04-10 22:27:41 +00:00
Create a __map__ from one or more key/data pairs.
[heading Synopsis]
template <
typename K0, typename K1,... typename KN
, typename T0, typename T1,... typename TN>
typename __result_of_make_map__<K0, K0,... KN, T0, T1,... TN>::type
make_map(T0 const& x0, T1 const& x1... TN const& xN);
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE`[footnote
`map` is implemented in terms of the vector. That is why we reuse
2007-04-10 22:27:41 +00:00
`FUSION_MAX_VECTOR_SIZE`] 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` before including any Fusion
header to change the default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`K0, K1,... KN`] [The key types] [Keys associated with `x0, x1,... xN`]]
[[`x0, x1,... xN`] [Instances of `T0, T1,... TN`] [The arguments to `make_map`]]
]
[heading Expression Semantics]
make_map<K0, K1,... KN>(x0, x1,... xN);
[*Return type]: __result_of_make_map__`<K0, K0,... KN, T0, T1,... TN>::type`
2007-04-10 22:27:41 +00:00
[*Semantics]: Create a __map__ from `K0, K1,... KN` keys and
`x0, x1,... xN` data.
[*Precondition]: There may be no duplicate key types.
[heading Header]
#include <boost/fusion/sequence/generation/make_map.hpp>
[heading Example]
make_map(
__fusion_make_pair__<int>('X')
, __fusion_make_pair__<double>("Men"))
2007-04-10 22:27:41 +00:00
[heading See also]
__note_boost_ref__, __fusion_pair__
[endsect]
[section Tiers]
2007-04-10 22:27:41 +00:00
Tiers are sequences, where all elements are non-const reference types. They
are constructed with a call to a couple of /tie/ function templates. The
succeeding sections document the various /tier/ flavors.
* __list_tie__
* __vector_tie__
* __map_tie__
Example:
2007-04-10 22:27:41 +00:00
int i; char c; double d;
...
__vector_tie__(i, c, a);
The __vector_tie__ function creates a __vector__ of type
2007-04-10 22:27:41 +00:00
`__vector__<int&, char&, double&>`. The same result could be achieved with the call
__make_vector__(__boost_ref_call__(i), __boost_ref_call__(c), __boost_ref_call__(a))
[footnote see __boost_ref__ for details about `ref`].
A /tie/ can be used to 'unpack' another tuple into variables. E.g.:
2007-04-10 22:27:41 +00:00
int i; char c; double d;
__vector_tie__(i, c, d) = __make_vector__(1,'a', 5.5);
std::cout << i << " " << c << " " << d;
2007-04-10 22:27:41 +00:00
This code prints 1 a 5.5 to the standard output stream. A sequence
unpacking operation like this is found for example in ML and Python. It is
convenient when calling functions which return sequences.
[heading Ignore]
2007-04-10 22:27:41 +00:00
There is also an object called /ignore/ which allows you to ignore an
element assigned by a sequence. The idea is that a function may return a
sequence, only part of which you are interested in. For example:
char c;
__vector_tie__(ignore, c) = __make_vector__(1, 'a');
[endsect]
[section list_tie]
[heading Description]
Constructs a tie using a __list__ sequence.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
__list__<T0&, T1&,... TN&>
list_tie(T0& x0, T1& x1... TN& xN);
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_LIST_SIZE` elements, where
`FUSION_MAX_LIST_SIZE` is a user definable predefined maximum that defaults
to `10`. You may define the preprocessor constant `FUSION_MAX_LIST_SIZE`
before including any Fusion header to change the default. Example:
#define FUSION_MAX_LIST_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`x0, x1,... xN`] [Instances of `T0, T1,... TN`] [The arguments to `list_tie`]]
]
[heading Expression Semantics]
list_tie(x0, x1,... xN);
[*Return type]: __list__<T0&, T1&,... TN&>
[*Semantics]: Create a __list__ of references from `x0, x1,... xN`.
[heading Header]
#include <boost/fusion/sequence/generation/list_tie.hpp>
[heading Example]
int i = 123;
double d = 123.456;
list_tie(i, d)
[endsect]
[section vector_tie]
[heading Description]
Constructs a tie using a __vector__ sequence.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
__vector__<T0&, T1&,... TN&>
vector_tie(T0& x0, T1& x1... TN& xN);
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE` 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` before including any Fusion header to change the
default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`x0, x1,... xN`] [Instances of `T0, T1,... TN`] [The arguments to `vector_tie`]]
]
[heading Expression Semantics]
vector_tie(x0, x1,... xN);
[*Return type]: __vector__<T0&, T1&,... TN&>
[*Semantics]: Create a __vector__ of references from `x0, x1,... xN`.
[heading Header]
#include <boost/fusion/sequence/generation/vector_tie.hpp>
[heading Example]
int i = 123;
double d = 123.456;
vector_tie(i, d)
[endsect]
[section map_tie]
[heading Description]
Constructs a tie using a __map__ sequence.
[heading Synopsis]
template <typename K0, typename K1,... typename KN, typename D0, typename D1,... typename DN>
__map__<__pair__<K0, D0&>, __pair__<K1, D1&>,... __pair__<KN, DN&> >
map_tie(D0& d0, D1& d1... DN& dN);
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_MAP_SIZE` elements,
where `FUSION_MAX_MAP_SIZE` is a user definable predefined maximum that
defaults to `10`, and a corresponding number of key types.
You may define the preprocessor constant `FUSION_MAX_MAP_SIZE` before
including any Fusion header to change the default. Example:
#define FUSION_MAX_MAP_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`K0, K1,... KN`] [Any type][The key types associated with each of the `x1,x2,...,xN` values]]
[[`x0, x1,... xN`] [Instances of `T0, T1,... TN`] [The arguments to `map_tie`]]
]
[heading Expression Semantics]
map_tie<K0, K1,... KN>(x0, x1,... xN);
[*Return type]: __map__<__pair__<K0, D0&>, __pair__<K1, D1&>,... __pair__<KN, DN&> >
[*Semantics]: Create a __map__ of references from `x0, x1,... xN` with keys `K0, K1,... KN`
[heading Header]
#include <boost/fusion/sequence/generation/map_tie.hpp>
[heading Example]
struct int_key;
struct double_key;
...
int i = 123;
double d = 123.456;
map_tie<int_key, double_key>(i, d)
[endsect]
[endsect]
[section MetaFunctions]
2007-04-10 22:27:41 +00:00
[section make_list]
[heading Description]
Returns the result type of __make_list__.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
struct make_list;
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_LIST_SIZE` elements, where
`FUSION_MAX_LIST_SIZE` is a user definable predefined maximum that defaults
to `10`. You may define the preprocessor constant `FUSION_MAX_LIST_SIZE`
before including any Fusion header to change the default. Example:
#define FUSION_MAX_LIST_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`T0, T1,... TN`] [Any type] [Template arguments to `make_list`]]
]
[heading Expression Semantics]
result_of::make_list<T0, T1,... TN>::type
2007-04-10 22:27:41 +00:00
[*Return type]: A __list__ with elements of types converted following the
rules for __element_conversion__.
[*Semantics]: Create a __list__ from `T0, T1,... TN`.
[heading Header]
#include <boost/fusion/sequence/generation/make_list.hpp>
[heading Example]
result_of::make_list<int, const char(&)[7], double>::type
[endsect]
[section make_cons]
[heading Description]
2007-04-10 22:27:41 +00:00
Returns the result type of __make_cons__.
[heading Synopsis]
template <typename Car, typename Cdr = nil>
struct make_cons;
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`Car`] [Any type] [The list's head type]]
[[`Cdr`] [A `cons`] [The list's tail type (optional)]]
]
[heading Expression Semantics]
result_of::make_cons<Car, Cdr>::type
2007-04-10 22:27:41 +00:00
[*Return type]: A __cons__ with head element, `Car`, of type converted
following the rules for __element_conversion__, and tail, `Cdr`.
2007-04-10 22:27:41 +00:00
[*Semantics]: Create a __cons__ from `Car` (/head/) and optional `Cdr` (/tail/).
[heading Header]
#include <boost/fusion/sequence/generation/make_cons.hpp>
[heading Example]
result_of::make_cons<char, result_of::make_cons<int>::type>::type
[endsect]
[section make_vector]
[heading Description]
Returns the result type of __make_vector__.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
struct make_vector;
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE` 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` before including any Fusion header to change the
default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`T0, T1,... TN`] [Any type] [Template arguments to `make_vector`]]
]
[heading Expression Semantics]
result_of::make_vector<T0, T1,... TN>::type
2007-04-10 22:27:41 +00:00
[*Return type]: A __vector__ with elements of types converted following the
rules for __element_conversion__.
[*Semantics]: Create a __vector__ from `T0, T1,... TN`.
[heading Header]
#include <boost/fusion/sequence/generation/make_list.hpp>
[heading Example]
result_of::make_vector<int, const char(&)[7], double>::type
[endsect]
[section make_set]
[heading Description]
Returns the result type of __make_set__.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
struct make_set;
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE`[footnote
`set` is implemented in terms of the vector. That is why we reuse
2007-04-10 22:27:41 +00:00
`FUSION_MAX_VECTOR_SIZE`] 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` before including any Fusion
header to change the default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`T0, T1,... TN`] [Any type] [The arguments to `make_set`]]
]
[heading Expression Semantics]
result_of::make_set<T0, T1,... TN>::type
2007-04-10 22:27:41 +00:00
[*Return type]: A __set__ with elements of types converted following the
rules for __element_conversion__.
[*Semantics]: Create a __set__ from `T0, T1,... TN`.
[*Precondition]: There may be no duplicate key types.
[heading Header]
#include <boost/fusion/sequence/generation/make_set.hpp>
[heading Example]
result_of::make_set<int, char, double>::type
[endsect]
[section make_map]
[heading Description]
Returns the result type of __make_map__.
[heading Synopsis]
template <
typename K0, typename K1,... typename KN
, typename T0, typename T1,... typename TN>
struct make_map;
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE`[footnote
`map` is implemented in terms of the vector. That is why we reuse
2007-04-10 22:27:41 +00:00
`FUSION_MAX_VECTOR_SIZE`] 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` before including any Fusion
header to change the default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`K0, K1,... KN`] [Any type] [Keys associated with `T0, T1,... TN`]]
[[`T0, T1,... TN`] [Any type] [Data associated with keys `K0, K1,... KN`]]
]
[heading Expression Semantics]
resulf_of::make_map<K0, K1,... KN, T0, T1,... TN>::type;
[*Return type]: __result_of_make_map__`<K0, K0,... KN, T0, T1,... TN>::type`
2007-04-10 22:27:41 +00:00
[*Semantics]: A __map__ with __fusion_pair__ elements where the
`second_type` is converted following the rules for __element_conversion__.
[*Precondition]: There may be no duplicate key types.
[heading Header]
#include <boost/fusion/sequence/generation/make_map.hpp>
[heading Example]
result_of::make_map<int, double, char, double>::type
2007-04-10 22:27:41 +00:00
[heading See also]
__fusion_pair__
[endsect]
[section list_tie]
[heading Description]
Returns the result type of __list_tie__.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
struct list_tie;
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_LIST_SIZE` elements, where
`FUSION_MAX_LIST_SIZE` is a user definable predefined maximum that defaults
to `10`. You may define the preprocessor constant `FUSION_MAX_LIST_SIZE`
before including any Fusion header to change the default. Example:
#define FUSION_MAX_LIST_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`T0, T1,... TN`] [Any type] [The arguments to `list_tie`]]
]
[heading Expression Semantics]
result_of::list_tie<T0, T1,... TN>::type;
[*Return type]: __list__<T0&, T1&,... TN&>
[*Semantics]: Create a __list__ of references from `T0, T1,... TN`.
[heading Header]
#include <boost/fusion/sequence/generation/list_tie.hpp>
[heading Example]
result_of::list_tie<int, double>::type
[endsect]
[section vector_tie]
[heading Description]
Returns the result type of __vector_tie__.
[heading Synopsis]
template <typename T0, typename T1,... typename TN>
struct vector_tie;
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_VECTOR_SIZE` 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` before including any Fusion header to change the
default. Example:
#define FUSION_MAX_VECTOR_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`T0, T1,... TN`] [Any type] [The arguments to `vector_tie`]]
]
[heading Expression Semantics]
result_of::vector_tie<T0, T1,... TN>::type;
[*Return type]: __vector__<T0&, T1&,... TN&>
[*Semantics]: Create a __vector__ of references from `T0, T1,... TN`.
[heading Header]
#include <boost/fusion/sequence/generation/vector_tie.hpp>
[heading Example]
result_of::vector_tie<int, double>::type
[endsect]
[section map_tie]
[heading Description]
Returns the result type of __map_tie__.
[heading Synopsis]
template <typename K0, typename K1,... typename KN, typename D0, typename D1,... typename DN>
struct map_tie;
2007-04-10 22:27:41 +00:00
The variadic function accepts `0` to `FUSION_MAX_MAP_SIZE` elements,
where `FUSION_MAX_MAP_SIZE` is a user definable predefined maximum that
defaults to `10`. You may define the preprocessor constant
`FUSION_MAX_MAP_SIZE` before including any Fusion header to change the
default. Example:
#define FUSION_MAX_MAP_SIZE 20
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`K0, K1,... KN`] [Any type] [The key types for `map_tie`]]
[[`D0, D1,... DN`] [Any type] [The arguments types for `map_tie`]]
]
[heading Expression Semantics]
result_of::map_tie<K0, K1,... KN, D0, D1,... DN>::type;
[*Return type]: __map__<__pair__<K0, D0&>, __pair__<K1, D1&>,... __pair__<KN, DN&> >
[*Semantics]: Create a __map__ of references from `D0, D1,... DN` with keys `K0, K1,... KN`
[heading Header]
#include <boost/fusion/sequence/generation/map_tie.hpp>
[heading Example]
struct int_key;
struct double_key;
...
result_of::map_tie<int_key, double_key, int, double>::type
[endsect]
[endsect]
[endsect]
[section Conversion]
2007-04-10 22:27:41 +00:00
All fusion sequences can be converted to one of the __containers__ types
using one of these conversion functions.
[heading Header]
#include <boost/fusion/sequence/conversion.hpp>
[section Functions]
[section as_list]
[heading Description]
Convert a fusion sequence to a __list__.
[heading Synopsis]
template <typename Sequence>
typename result_of::as_list<Sequence>::type
as_list(Sequence& seq);
template <typename Sequence>
typename result_of::as_list<Sequence const>::type
as_list(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [An instance of Sequence] [The sequence to convert.]]
]
[heading Expression Semantics]
as_list(seq);
[*Return type]: __result_of_as_list__`<Sequence>::type`
[*Semantics]: Convert a fusion sequence, `seq`, to a __list__.
[heading Header]
#include <boost/fusion/sequence/conversion/as_list.hpp>
[heading Example]
as_list(__make_vector__('x', 123, "hello"))
[endsect]
[section as_vector]
[heading Description]
Convert a fusion sequence to a __vector__.
[heading Synopsis]
template <typename Sequence>
typename result_of::as_vector<Sequence>::type
as_vector(Sequence& seq);
template <typename Sequence>
typename result_of::as_vector<Sequence const>::type
as_vector(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [An instance of Sequence] [The sequence to convert.]]
]
[heading Expression Semantics]
as_vector(seq);
[*Return type]: __result_of_as_vector__`<Sequence>::type`
[*Semantics]: Convert a fusion sequence, `seq`, to a __vector__.
[heading Header]
#include <boost/fusion/sequence/conversion/as_vector.hpp>
[heading Example]
as_vector(__make_list__('x', 123, "hello"))
2007-04-10 22:27:41 +00:00
[endsect]
[section as_set]
[heading Description]
Convert a fusion sequence to a __set__.
[heading Synopsis]
template <typename Sequence>
typename result_of::as_set<Sequence>::type
as_set(Sequence& seq);
template <typename Sequence>
typename result_of::as_set<Sequence const>::type
as_set(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [An instance of Sequence] [The sequence to convert.]]
]
[heading Expression Semantics]
as_set(seq);
[*Return type]: __result_of_as_set__`<Sequence>::type`
[*Semantics]: Convert a fusion sequence, `seq`, to a __set__.
[*Precondition]: There may be no duplicate key types.
[heading Header]
#include <boost/fusion/sequence/conversion/as_set.hpp>
[heading Example]
as_set(__make_vector__('x', 123, "hello"))
[endsect]
[section as_map]
[heading Description]
Convert a fusion sequence to a __map__.
[heading Synopsis]
template <typename Sequence>
typename result_of::as_map<Sequence>::type
as_map(Sequence& seq);
template <typename Sequence>
typename result_of::as_map<Sequence const>::type
as_map(Sequence const& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`seq`] [An instance of Sequence] [The sequence to convert.]]
]
[heading Expression Semantics]
as_map(seq);
[*Return type]: __result_of_as_map__`<Sequence>::type`
[*Semantics]: Convert a fusion sequence, `seq`, to a __map__.
2007-04-10 22:27:41 +00:00
[*Precondition]: The elements of the sequence are assumed to be
__fusion_pair__s. There may be no duplicate __fusion_pair__ key types.
[heading Header]
#include <boost/fusion/sequence/conversion/as_map.hpp>
[heading Example]
as_map(__make_vector__(
__fusion_make_pair__<int>('X')
, __fusion_make_pair__<double>("Men")))
[endsect]
[endsect]
[section Metafunctions]
[section as_list]
[heading Description]
Returns the result type of __as_list__.
[heading Synopsis]
template <typename Sequence>
struct as_list;
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`Sequence`] [A fusion __sequence__] [The sequence type to convert.]]
]
[heading Expression Semantics]
result_of::as_list<Sequence>::type;
2007-04-10 22:27:41 +00:00
[*Return type]: A __list__ with same elements as the input sequence,
`Sequence`.
[*Semantics]: Convert a fusion sequence, `Sequence`, to a __list__.
[heading Header]
#include <boost/fusion/sequence/conversion/as_list.hpp>
[heading Example]
result_of::as_list<__vector__<char, int> >::type
[endsect]
[section as_vector]
[heading Description]
Returns the result type of __as_vector__.
[heading Synopsis]
template <typename Sequence>
struct as_vector;
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`Sequence`] [A fusion __sequence__] [The sequence to convert.]]
]
[heading Expression Semantics]
result_of::as_vector<Sequence>::type;
2007-04-10 22:27:41 +00:00
[*Return type]: A __vector__ with same elements as the input sequence,
`Sequence`.
[*Semantics]: Convert a fusion sequence, `Sequence`, to a __vector__.
[heading Header]
#include <boost/fusion/sequence/conversion/as_vector.hpp>
[heading Example]
result_of::as_vector<__list__<char, int> >::type
2007-04-10 22:27:41 +00:00
[endsect]
[section as_set]
[heading Description]
Returns the result type of __as_set__.
[heading Synopsis]
template <typename Sequence>
struct as_set;
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`Sequence`] [A fusion __sequence__] [The sequence to convert.]]
]
[heading Expression Semantics]
result_of::as_set<Sequence>::type;
2007-04-10 22:27:41 +00:00
[*Return type]: A __set__ with same elements as the input sequence,
`Sequence`.
[*Semantics]: Convert a fusion sequence, `Sequence`, to a __set__.
[*Precondition]: There may be no duplicate key types.
[heading Header]
#include <boost/fusion/sequence/conversion/as_set.hpp>
[heading Example]
result_of::as_set<__vector__<char, int> >::type
[endsect]
[section as_map]
[heading Description]
Returns the result type of __as_map__.
[heading Synopsis]
template <typename Sequence>
struct as_map;
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`Sequence`] [A fusion __sequence__] [The sequence to convert.]]
]
[heading Expression Semantics]
result_of::as_map<Sequence>::type;
2007-04-10 22:27:41 +00:00
[*Return type]: A __map__ with same elements as the input sequence,
`Sequence`.
[*Semantics]: Convert a fusion sequence, `Sequence`, to a __map__.
2007-04-10 22:27:41 +00:00
[*Precondition]: The elements of the sequence are assumed to be
__fusion_pair__s. There may be no duplicate __fusion_pair__ key types.
[heading Header]
#include <boost/fusion/sequence/conversion/as_map.hpp>
[heading Example]
result_of::as_map<__vector__<
__fusion_pair__<int, char>
, __fusion_pair__<double, std::string> > >::type
[endsect]
[endsect]
[endsect]
[section Operator]
2007-04-10 22:27:41 +00:00
These operators, like the __algorithms__, work generically on all Fusion
sequences. All conforming Fusion sequences automatically get these
operators for free.
[section I/O]
2007-04-10 22:27:41 +00:00
The I/O operators: `<<` and `>>` work generically on all Fusion sequences.
The global `operator<<` has been overloaded for generic output streams such
that __sequence__s are output by recursively calling `operator<<` for each
element. Analogously, the global `operator>>` has been overloaded to
extract __sequence__s from generic input streams by recursively calling
`operator>>` for each element.
2007-04-10 22:27:41 +00:00
The default delimiter between the elements is space, and the __sequence__
is enclosed in parenthesis. For Example:
__vector__<float, int, std::string> a(1.0f, 2, std::string("Howdy folks!");
2007-04-10 22:27:41 +00:00
cout << a;
outputs the __vector__ as: (1.0 2 Howdy folks!)
The library defines three manipulators for changing the default behavior:
[variablelist Manipulators
[[`tuple_open(arg)`] [Defines the character that is output before the first element.]]
[[`tuple_close(arg)`] [Defines the character that is output after the last element.]]
[[`tuple_delimiter(arg)`] [Defines the delimiter character between elements.]]
]
2007-04-10 22:27:41 +00:00
The argument to `tuple_open`, `tuple_close` and `tuple_delimiter` may be a
`char`, `wchar_t`, a C-string, or a wide C-string.
Example:
std::cout << tuple_open('[') << tuple_close(']') << tuple_delimiter(", ") << a;
outputs the same __vector__, `a` as: [1.0, 2, Howdy folks!]
2007-04-10 22:27:41 +00:00
The same manipulators work with `operator>>` and `istream` as well. Suppose
the `std::cin` stream contains the following data:
(1 2 3) [4:5]
The code:
__vector__<int, int, int> i;
__vector__<int, int> j;
std::cin >> i;
std::cin >> set_open('[') >> set_close(']') >> set_delimiter(':');
std::cin >> j;
reads the data into the __vector__s `i` and `j`.
2007-04-10 22:27:41 +00:00
Note that extracting __sequence__s with `std::string` or C-style string
elements does not generally work, since the streamed __sequence__
representation may not be unambiguously parseable.
[heading Header]
#include <boost/fusion/sequence/io.hpp>
[section in]
[heading Description]
Read a __sequence__ from an input stream.
[heading Synopsis]
template <typename IStream, typename Sequence>
IStream&
operator>>(IStream& is, Sequence& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[is] [An input stream.] [Stream to extract information from.]]
[[seq] [A __sequence__.] [The sequence to read.]]
]
[heading Expression Semantics]
is >> seq
[*Return type]: IStream&
[*Semantics]: For each element, `e`, in sequence, `seq`, call `is >> e`.
[heading Header]
#include <boost/fusion/sequence/io/in.hpp>
[heading Example]
__vector__<int, std::string, char> v;
std::cin >> v;
[endsect]
[section out]
[heading Description]
Write a __sequence__ to an output stream.
[heading Synopsis]
template <typename OStream, typename Sequence>
OStream&
operator<<(OStream& os, Sequence& seq);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[os] [An output stream.] [Stream to write information to.]]
[[seq] [A __sequence__.] [The sequence to write.]]
]
[heading Expression Semantics]
os << seq
[*Return type]: OStream&
[*Semantics]: For each element, `e`, in sequence, `seq`, call `os << e`.
[heading Header]
#include <boost/fusion/sequence/io/out.hpp>
[heading Example]
std::cout << __make_vector__(123, "Hello", 'x') << std::endl;
[endsect]
[endsect]
[section Comparison]
2007-04-10 22:27:41 +00:00
The Comparison operators: `==`, `!=`, `<`, `<=`, `>=` and `>=` work
generically on all Fusion sequences. Comparison operators are "short-
2007-04-10 22:27:41 +00:00
circuited": elementary comparisons start from the first elements and are
performed only until the result is clear.
[heading Header]
#include <boost/fusion/sequence/comparison.hpp>
[section equal]
[heading Description]
Compare two sequences for equality.
[heading Synopsis]
template <typename Seq1, typename Seq2>
bool
operator==(Seq1 const& a, Seq2 const& b);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`a, b`] [Instances of __sequence__] [__sequence__s to compare]]
]
[heading Expression Semantics]
a == b
[*Return type]: `bool`
2007-04-10 22:27:41 +00:00
[*Requirements]:
2007-04-10 22:27:41 +00:00
For each element, `e1`, in sequence `a`, and for each element, `e2`, in
sequence `b`, `a == b` is a valid expression returning a type that is
convertible to bool.
2007-04-10 22:27:41 +00:00
An attempt to compare two Sequences of different lengths results in a
compile time error.
2007-04-10 22:27:41 +00:00
[*Semantics]:
2007-04-10 22:27:41 +00:00
For each element, `e1`, in sequence `a`, and for each element, `e2`, in
sequence `b`, `e1 == e2` returns true. For any 2 zero length __sequence__s,
e and f, e == f returns true.
[heading Header]
#include <boost/fusion/sequence/comparison/equal_to.hpp>
[heading Example]
__vector__<int, char> v1(5, 'a');
__vector__<int, char> v2(5, 'a');
assert(v1 == v2);
[endsect]
[section not equal]
Compare two sequences for inequality.
[heading Synopsis]
template <typename Seq1, typename Seq2>
bool
operator!=(Seq1 const& a, Seq2 const& b);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`a, b`] [Instances of __sequence__] [__sequence__s to compare]]
]
[heading Expression Semantics]
a != b
[*Return type]: `bool`
2007-04-10 22:27:41 +00:00
[*Requirements]:
2007-04-10 22:27:41 +00:00
For each element, `e1`, in sequence `a`, and for each element, `e2`, in
sequence `b`, `a == b` is a valid expression returning a type that is
convertible to bool.
2007-04-10 22:27:41 +00:00
An attempt to compare two Sequences of different lengths results in a
compile time error.
2007-04-10 22:27:41 +00:00
[*Semantics]:
Returns !(a == b).
[heading Header]
#include <boost/fusion/sequence/comparison/not_equal_to.hpp>
[heading Example]
__vector__<int, char> v3(5, 'b');
__vector__<int, char> t4(2, 'a');
assert(v1 != v3);
assert(v1 != t4);
assert(!(v1 != v2));
[endsect]
[section less than]
Lexicographically compare two sequences.
[heading Synopsis]
template <typename Seq1, typename Seq2>
bool
operator<(Seq1 const& a, Seq2 const& b);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`a, b`] [Instances of __sequence__] [__sequence__s to compare]]
]
[heading Expression Semantics]
a < b
[*Return type]: `bool`
2007-04-10 22:27:41 +00:00
[*Requirements]:
2007-04-10 22:27:41 +00:00
For each element, `e1`, in sequence `a`, and for each element, `e2`, in
sequence `b`, `a < b` is a valid expression returning a type that is
convertible to bool.
2007-04-10 22:27:41 +00:00
An attempt to compare two Sequences of different lengths results in a
compile time error.
[*Semantics]: Returns the lexicographical comparison of between `a` and `b`.
[heading Header]
#include <boost/fusion/sequence/comparison/less.hpp>
[heading Example]
__vector__<int, float> v1(4, 3.3f);
__vector__<short, float> v2(5, 3.3f);
__vector__<long, double> v3(5, 4.4);
assert(v1 < v2);
assert(v2 < v3);
[endsect]
[section less than equal]
Lexicographically compare two sequences.
[heading Synopsis]
template <typename Seq1, typename Seq2>
bool
operator<=(Seq1 const& a, Seq2 const& b);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`a, b`] [Instances of __sequence__] [__sequence__s to compare]]
]
[heading Expression Semantics]
a <= b
[*Return type]: `bool`
2007-04-10 22:27:41 +00:00
[*Requirements]:
2007-04-10 22:27:41 +00:00
For each element, `e1`, in sequence `a`, and for each element, `e2`, in
sequence `b`, `a < b` is a valid expression returning a type that is
convertible to bool.
2007-04-10 22:27:41 +00:00
An attempt to compare two Sequences of different lengths results in a
compile time error.
[*Semantics]: Returns !(b < a).
[heading Header]
#include <boost/fusion/sequence/comparison/less_equal.hpp>
[heading Example]
__vector__<int, float> v1(4, 3.3f);
__vector__<short, float> v2(5, 3.3f);
__vector__<long, double> v3(5, 4.4);
assert(v1 <= v2);
assert(v2 <= v3);
[endsect]
[section greater than]
Lexicographically compare two sequences.
[heading Synopsis]
template <typename Seq1, typename Seq2>
bool
operator>(Seq1 const& a, Seq2 const& b);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`a, b`] [Instances of __sequence__] [__sequence__s to compare]]
]
[heading Expression Semantics]
a > b
[*Return type]: `bool`
2007-04-10 22:27:41 +00:00
[*Requirements]:
2007-04-10 22:27:41 +00:00
For each element, `e1`, in sequence `a`, and for each element, `e2`, in
sequence `b`, `a < b` is a valid expression returning a type that is
convertible to bool.
2007-04-10 22:27:41 +00:00
An attempt to compare two Sequences of different lengths results in a
compile time error.
[*Semantics]: Returns b < a.
[heading Header]
#include <boost/fusion/sequence/comparison/less_equal.hpp>
[heading Example]
__vector__<int, float> v1(4, 3.3f);
__vector__<short, float> v2(5, 3.3f);
__vector__<long, double> v3(5, 4.4);
assert(v2 > v1);
assert(v3 > v2);
[endsect]
[section greater than equal]
Lexicographically compare two sequences.
[heading Synopsis]
template <typename Seq1, typename Seq2>
bool
operator>=(Seq1 const& a, Seq2 const& b);
[heading Parameters]
[table
[[Parameter] [Requirement] [Description]]
[[`a, b`] [Instances of __sequence__] [__sequence__s to compare]]
]
[heading Expression Semantics]
a >= b
[*Return type]: `bool`
2007-04-10 22:27:41 +00:00
[*Requirements]:
2007-04-10 22:27:41 +00:00
For each element, `e1`, in sequence `a`, and for each element, `e2`, in
sequence `b`, `a < b` is a valid expression returning a type that is
convertible to bool.
2007-04-10 22:27:41 +00:00
An attempt to compare two Sequences of different lengths results in a
compile time error.
[*Semantics]: Returns !(a < b).
[heading Header]
#include <boost/fusion/sequence/comparison/greater_equal.hpp>
[heading Example]
__vector__<int, float> v1(4, 3.3f);
__vector__<short, float> v2(5, 3.3f);
__vector__<long, double> v3(5, 4.4);
assert(v2 >= v1);
assert(v3 >= v2);
[endsect]
[endsect]
[endsect]
[endsect]