Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
7
votes
4answers
153 views

Haskell equivalent of Boost.Fusion

I have been playing with creating a fully typed DSEL in Haskell using GADTs and such for a fully type-safe AST, and it seems that doing a correctly typed compiler requires constructs such as maps from ...
6
votes
1answer
455 views

Flatten a sequence of sequences (of sequences)

I'm using boost::fusion. Lets say I have something like the following: make_vector(1, make_vector('b', 3, make_vector(4, 5.5), "six"), 7, 8) I want to produce an function f such that ...
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 ...
5
votes
3answers
532 views

Boost::Spirit::Qi. How to turn inlined parser expressions into standalone grammars, and how to unpack the tuples generated by them?

I'm using QI and Phoenix, and I want to write a small grammar that returns 4 bools which are to be used as arguments for a function call inside a semantic action. I have several functions that need ...
4
votes
1answer
65 views

How to figure out the return type of a vector of nviews

I have the following problem: template <int N, typename T> /*what is the return type*/ nviewgetter( T const& t ) { typename T::const_iterator it(t.begin()); typedef ...
4
votes
1answer
83 views

Function object in boost::fusion::for_each different from std::for_each

While upgrading to a newer compiler and resolving compiler errors I realized that boost::fusion::for_each requires that the function object passed in has the operator const. Example from Boost: ...
4
votes
1answer
212 views

How can I make std::find_if and std::map work together using some boost library?

This question is inspired from another topic which poses this question: Find the first value greater than user specified value from a map container which can be solved in several ways. A typical ...
3
votes
2answers
197 views

Difference between boost::MPL and boost::fusion

I'm new to boost::fusion and boost::mpl libraries. Could anyone please tell me the main difference between these two libraries? Until now I used only fusion::vector and few other simple things. Now ...
3
votes
2answers
243 views

mpl::transform on boost::fusion::tuple

The following code does not compile on g++ (GCC) 4.6.0 20110603 (prerelease) with -std=c++0x and Boost 1.46.1. Am I missing an include or is this actually a bug? If the latter, how to work around it? ...
3
votes
3answers
359 views

Accessing members in a C++ struct both dynamically and statically

I would like to have a struct (or something similar) in C++, that will allow access to its members dynamically. It should have a generic getter and setters that receive the member name as a string, ...
2
votes
1answer
76 views

Interaction between runtime and fusion sequences

Further to my question C++ Tuple of Boost.Range - get Tuple of element types? I have the following: TupleOfRanges ranges; TupleOfElements elements; std::vector<int> offsets; All containers ...
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
1answer
377 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
1answer
472 views

How do I get iterator into boost fusion map?

I'm trying to get iterator for boost::fusion::map, but I'm missing something. The following works with boost::fusion::vector: typedef vector<int,char,double> vector_t; vector_t ...
2
votes
2answers
284 views

Where can I find boost::fusion articles, examples, guides, tutorials?

I am going to go ahead and shamelessly duplicate this question because the accepted answer is essentially "nope, no guides" and it's been nearly a year now since it's been asked. Does anyone know of ...
2
votes
1answer
594 views

How can I use boost::mpl::fold with a boost::fusion::map?

When I try to compile this: #include <boost/fusion/container/map.hpp> #include <boost/mpl/fold.hpp> int main(int argc, char** argv) { typedef boost::fusion::map < ...
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
0answers
66 views

issues with const correctness using boost::fusion::map

I'm writing some classes that use boost::fusion::map. Bellow you find a simplified code: template <typename ObjDef> struct Object { typedef typename ...
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; ...
1
vote
1answer
68 views

fusion::vector + fusion::push_back = fusion::vector?

I typedef a vector with two elements. Then I push_back into it an other element and expect what result type is also a vector. But that's not so. Example: typedef boost::fusion::vector<int, ...
1
vote
1answer
63 views

Can/should i inherit from a Boost.Fusion sequence?

Can/should i inherit from a Fusion sequence to implement my own sequence class? If no, why not? For example: typedef boost::fusion::vector< std::vector<const char*>, int, ...
1
vote
1answer
119 views

BOOST_FUSION_ADAPT_STRUCT doesn't take the right number of arguments

I am using Boost::Spirit to parse some text into structs. This requires using BOOST_FUSION_ADAPT_STRUCT for parsing text and directly storing into the structure. I know that the macro takes 2 ...
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
198 views

convert boost::fusion::set to boost::fusion::map by using boost::fusion::fold

I have a fusion set and would like to convert it into a fusion map. #include <cstdlib> #include <iostream> #include <boost/fusion/include/fold.hpp> #include ...
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
120 views

Function overloading error

I can't understand why the code behaves this way? #include <iostream> #include <boost/fusion/container/vector.hpp> #include <boost/fusion/include/vector.hpp> #include ...
1
vote
2answers
243 views

using Boost.Fusion list of function

I am trying to apply list of function object to some value in the following code. But this code cause err boost_1_44\boost\fusion\algorithm\iteration\detail\for_each.hpp(82): error C2064: How to ...
1
vote
3answers
233 views

Compile-Time container of functors for controlling an algorithm?

Suppose i want something simple like the following: I have an core-algorithm, which randomly selects one of the specialized algorithms (specialized at compile-time) and process this algorithm. These ...
1
vote
2answers
452 views

Boost Fusion container of shared pointers (shared_ptr) causing Segmentation Fault (sigsegv) or garbage results

Edit: This turned out to be an issue with temporaries. Basically, I was ignorantly using C++ as if it worked like Java or C#, which it does not. Hopefully, this will be a good cautionary tale. ...
1
vote
1answer
319 views

error: boost.fusion::for_each() and struct derived from boost.tuple

on compilation this code: struct any_type: boost::tuple<std::string, std::string, std::string> { ... }; struct functor { void operator()(const std::string& v) { std::cout ...
1
vote
2answers
224 views

How can I parse different structures with Boost.Spirit.Qi?

In this example, employee structs are parsed in the form "employee{int, string, string, double}". I would like to know whether it is possible to modify this example to also parse different types of ...
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 << ...
1
vote
2answers
274 views

How to use boost::fusion::transform on heterogeneous containers?

Boost.org's example given for fusion::transform is as follows: struct triple { typedef int result_type; int operator()(int t) const { return t * 3; }; }; // ... ...
1
vote
1answer
518 views

What is the proper use of boost::fusion::push_back?

// ... snipped includes for iostream and fusion ... namespace fusion = boost::fusion; class Base { protected: int x; public: Base() : x(0) {} void chug() { x++; cout << ...
1
vote
1answer
376 views

boost fusion: strange problem depending on number of elements on a vector

I am trying to use Boost::Fusion (Boost v1.42.0) in a personal project. I get an interesting error with this code: #include "boost/fusion/include/sequence.hpp" #include ...
1
vote
1answer
738 views

How to iterate over a boost::fusion sequence?

I'm trying to initialise a list of args to use with fusion::invoke. The args are all of the form: template <typename Type> struct ArgWrapper { inline ArgWrapper(){} inline void ...
0
votes
0answers
57 views

Folding an std::vector in a fusion visitor

I have a recursive structure, using boost::fusion. I'm quite new with boost and C++ templates, so I don't quite get what I do wrong here: typedef boost::variant< double, ...
0
votes
0answers
95 views

Constructing data members of a boost::fusion::map

Is there any way to construct the data members of a boost::fusion::map using constructors with a non-zero number of parameters? Specifically, let's say I have the following: class DataType1 : public ...
0
votes
1answer
103 views

Boost phoenix actor as a fusion callable object

I was wondering if it was possible to create callable phoenix actors and use them in fusion sequences. Given the following source: struct FusionStruct { void Doit() const{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
0answers
83 views

Boost Tuple or Fusion containers as baseclass [closed]

Should I avoid using Boost Tuples or Fusion containers as a baseclass? I'd like a custom constructor but may add other methods in future. I know STL containers should not be used as containers due ...
0
votes
1answer
172 views

reference to element in boost.fusion vector

EDIT - please ignore - the question resolved around a simple typo. I need a break. How do I access a reference to an element of a boost fusion vector? Unlike boost.tuples's ...
0
votes
1answer
92 views

boost fusion question

I'm having trouble compiling the following (I'm new at fusion). In particular, I'm not sure where "_" (in is_same) comes from? From boost::lambda? Boost::mpl? What include do I need for this to ...
0
votes
1answer
85 views

Is it possible to use Boost.Spirit V2.x without Boost.Fusion?

Is it really necessary to wrap structs/classes with Boost.Fusion in order to use them with Boost.Spirit V2.x (especially Boost.Spirit.Qi)? I would much rather use semantic actions to assign to ...
0
votes
1answer
409 views

Issue trying to compile Spirit.Qi parser

Below is a fully self-contained example. The problem appears to be lines 84-89 - if those lines are commented out, the example compiles. What I'm trying to parse is each line of a file, with five ...
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 ...
0
votes
1answer
452 views

Getting the index of boost::fusion::vector from a boost::mpl::vector

I started to play around with the boost fusion and mpl library and got stuck with a quite simple problem. I declared the following types: typedef boost::mpl::vector<char, int, long> ...