Tagged Questions

13
votes
3answers
2k views

Boost Fusion articles, examples, tutorials?

Do you know any good resources/articles/examples of boost::fusion library usage? Boost Fusion looks extremely interesting, I think I understand how it works and how to use the basics, but I'm looking ...
2
votes
1answer
381 views

Boost Fusion/MPL: convert type from sequence to sequence of equivalent any_range's

I want to use Boost's any_range to handle multiple heterogeneous data ranges. The type of my data ranges is known as a Fusion vector, for example: typedef vector<double, int, char> ...
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
2answers
28 views

Initializing the elements of a Boost.Fusion sequence from another sequence

I've got a Boost.Fusion sequence of elements that need to be initialized one each with the elements of another sequence. When I'd not use Fusion, this would look like: class A { A1 a; A2 b; ...