Tagged Questions

6
votes
1answer
2k views

Boost.MPL and type list generation

Background This is for a memory manager in a game engine. I have a freelist implemented, and would like to have a compile-time list if these. (A MPL or Fusion vector, for example). The freelist's ...
2
votes
1answer
196 views

boost::fusion::result_of::as_set (or as_vector) converted from complex (nested) mpl sequences

#include <iostream> #include <boost/fusion/mpl.hpp> #include <boost/fusion/include/mpl.hpp> #include <boost/fusion/container/set.hpp> #include ...
2
votes
2answers
1k views

generate mpl::vector from fusion::vector

How to generate fusion::vector from mpl::vector? How to generate mpl::vector from fusion::vector? BOOST_MPL_ASSERT((is_same< fusion::vector<int, char>, ...
1
vote
1answer
95 views

Passing/binding arguments when using boost::fusion::for_each

I would like to call a function on all elements of a boost::fusion::vector. The elements are of types like this: class A { ... void print_with_prefix(const char *prefix) { std::cout ...
1
vote
1answer
87 views

making boost::fusion::result_of::as_set<> 's instance doesn't call its elements' constructors

#include <iostream> #include <boost/mpl/front.hpp> #include <boost/mpl/pop_front.hpp> #include <boost/mpl/push_front.hpp> #include <boost/mpl/push_back.hpp> #include ...
1
vote
1answer
245 views

Boost.Fusion Functional: Calling functions with default arguments

Is it possible to use boost::fusion::invoke function to call a function that has default arguments without specifying those? Example: void foo(int x, int y = 1, int z = 2) { std::cout << ...
0
votes
0answers
85 views

Nested fusion vector — how to access a sequence-of-sequences in a flattened way?

in the following example, Outer contains a nested fusion::vector: struct A { fusion::vector<int, double> sub_elements_; }; struct B { fusion::vector<char *, char *> sub_elements_; }; ...
0
votes
1answer
333 views

Boost fusion oddity

I am trying out Fusion and found something very odd... Here is the code... I have highlighted the problematic code with // ############ TROUBLE HERE ###### #include <tr1/cstdint> #include ...