...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Returns the result type of deque_tie
.
template <typename ...Elements> struct deque_tie;
For C++11 compilers, the variadic template interface has no upper bound.
For C++03 compilers, the variadic function accepts 0
to FUSION_MAX_DEQUE_SIZE
elements, where FUSION_MAX_DEQUE_SIZE
is a user definable predefined maximum that defaults to 10
. You may define the preprocessor constant
FUSION_MAX_DEQUE_SIZE
before including any Fusion header to change the default. Example:
#define FUSION_MAX_DEQUE_SIZE 20
Parameter |
Requirement |
Description |
---|---|---|
|
Variadic template types |
Template arguments to |
result_of::deque_tie<Elements...>::type;
Return type: deque
<Elements&...>
Semantics: Create a deque
of references from Elements...
.
#include <boost/fusion/container/generation/deque_tie.hpp> #include <boost/fusion/include/deque_tie.hpp>
result_of::deque_tie<int, double>::type