...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Create a map
from one or more key/data pairs.
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);
For C++11 compilers, the variadic function interface has no upper bound.
For C++03 compilers, 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
Parameter |
Requirement |
Description |
---|---|---|
|
The key types |
Keys associated with |
|
Instances of |
The arguments to |
make_map<K0, K1,... KN>(x0, x1,... xN);
Return type: result_of::make_map
<K0, K0,... KN, T0, T1,... TN>::type
Semantics: Create a map
from K0, K1,... KN
keys and x0,
x1,...
xN
data.
Precondition: There may be no duplicate key types.
#include <boost/fusion/container/generation/make_map.hpp> #include <boost/fusion/include/make_map.hpp>
make_map<int, double>('X', "Men")