Tagged Questions

The Boost.MPL library is a general-purpose, high-level C++ template metaprogramming framework of compile-time algorithms, sequences and metafunctions. It provides a conceptual foundation and an extensive set of powerful and coherent tools that make doing explict metaprogramming in C++ as easy and enjoyable as possible within the current language.

learn more… | top users | synonyms

20
votes
6answers
449 views

Loosely coupled implicit conversion

Implicit conversion can be really useful when types are semantically equivalent. For example, imagine two libraries that implement a type identically, but in different namespaces. Or just a type that ...
11
votes
3answers
588 views

Permutations of a List of Types Using boost::mpl

I am trying to create a list containing the permutations of a given type list. The below code seems to function, though without the intended result, when I use a specified list instead of generating ...
8
votes
3answers
195 views

C++ forbid overwriting a virtual function

I use a class A from a library and want to add some functionality to it via an own class B. The user of class B should derive from it as if he would derive from class A. class A { public: ...
6
votes
4answers
98 views

How to inherit from a list of types and then call a member on the list of inherited members?

I have a set of classes that have the following structure: class U { public: explicit U(int) { ... } U() {...} Init(int) {...} }; I need to be able to compose 1 or more of these classes ...
6
votes
1answer
167 views

boost mpl string

Hi in boost mpl documentation I have discover mpl::string and the following example: typedef mpl::string<'hell','o wo','rld'> hello; I'm a little bit surprised because I thought that in C or ...
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 ...
6
votes
3answers
2k views

How to use boost::mpl to compose policies?

I have used something like the following to compose policies for my application: The policy classes look like this: struct Policy { static void init(); static void cleanup(); //... }; ...
5
votes
1answer
398 views

How to swap two elements of an mpl::vector?

I'm writing a template function which should swap two elements of a boost::mpl::vector (similarly to std::swap). The difficult part is there is no concept of a variable during compile time. I have ...
5
votes
1answer
78 views

Boost.flyweight and Boost.MPL

I have a question regarding flyweight options, given the definition below, based on http://www.boost.org/doc/libs/1_40_0/libs/flyweight/test/test_basic.cpp typedef boost::flyweights::flyweight< ...
5
votes
3answers
450 views

c++ compile-time string concatenation using boost-mpl

I'm trying to concatenate strings at compile-time using boost-mpl but am getting errors from gcc. Here's the sample - using namespace boost; using namespace std; template<class A> struct type ...
5
votes
2answers
214 views

Could someone help me create a variable container using Boost::MPL?

I have created a physics system that handles any collision object to any collision object like so: namespace Collision { template <typename T, typename U> inline void Check(T& t, ...
5
votes
2answers
210 views

How to explicitly instantiate a template for all members of MPL vector in C++?

Consider the following header file: // Foo.h class Foo { public: template <typename T> void read(T& value); }; I want to explicitly instantiate the Foo::read member ...
5
votes
4answers
901 views

examples of practical usage of boost::mpl?

can you share any real-world examples of boost::mpl usage (except lambdas)? just to let me better understand its purposes and field of practical usage. mpl documentation tutorial has dimensional ...
5
votes
1answer
325 views

c++ recursive mpl::equal problem?

i need an mpl::equal like procedure that supports recursion on types. namespace mpl = boost::mpl; BOOST_MPL_ASSERT(( mpl::equal< mpl::vector<int, char>, typename ...
4
votes
1answer
129 views

How do I get the sizeof(T) safely in boost if T can be void?

I'm trying to figure our how I can get some code to compile that will determine the size of T's return value, where T is a function prototype, in my function template. template<typename T> void ...
4
votes
1answer
154 views

Boost MPL: Call a (member) function only if it exists

I have a class A that has a template parameter T. There are use cases where the class T offers a function func1() and there are use cases where T doesn't offer it. A function f() in A should call ...
4
votes
1answer
136 views

Creating all template permutations with MPL

I have the following templated class structure struct TraitA{}; struct TraitB{}; template<typename trait> struct FunctionalityA{}; template<typename trait> struct FunctionalityB{}; ...
4
votes
3answers
117 views

How to enable a constructor with mpl techniques

I am little stuck with boost::enable_if and how to make a constructor switch with it. The code is this: struct NullType{}; struct TestType{}; struct NonNull{}; template<typename T, typename U = ...
4
votes
2answers
389 views

How to use std::tuple types with boost::mpl algorithms?

The boost::mpl algorithms seem not to be able to work on std::tuple types out of the box, e.g., the following does not compile (boost-1.46.0, g++ snapshot 2011-02-19): #include <tuple> #include ...
4
votes
4answers
378 views

Is it possible to iterate an mpl::vector at run time without instantiating the types in the vector?

Generally, I would use boost::mpl::for_each<>() to traverse a boost::mpl::vector, but this requires a functor with a template function declared like the following: template<typename T> ...
3
votes
2answers
198 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
245 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
1answer
143 views

meta-programming: inherit from every class in a boost mpl::vector

I wish to inherit from a set of classes contained in a boost mpl::vector. Is this possible? Specifically, I wish to extend test for arbitrary many template parameters, passed as a mpl::vector. ...
3
votes
1answer
101 views

unexpected result using boost mpl inserter iterator

I had expected the following to give the same result: namespace mpl = boost::mpl; template<int from, int to> struct make_vector1 : mpl::copy< mpl::range_c<int,from,to>, ...
3
votes
3answers
192 views

Boost MPL to generate code for object serialization?

I want to generate serialization/deserialization code for class Object { string a; int b; long c; char d; }; by looking at a mpl sequence, but I need to be able to identify object ...
3
votes
1answer
80 views

Is MPL pos an undocumented metafunction?

There is the following example code in the BOOST MPL documentation of the find algorithm: typedef vector<char,int,unsigned,long,unsigned long> types; typedef find<types,unsigned>::type ...
3
votes
2answers
310 views

Converting a MPL Vector to a Static Array

Greetings! I wrote some code to generate a boost::mpl::vector to use as a lookup table for a factorial function, as a test for a more general library function with which a developer may be able to ...
3
votes
2answers
347 views

Is there a way to break out of boost::mpl for_each?

Simple question really, let me give some background: I have a mpl::vector of types where each type has an id, at run time I use the mpl::for_each to iterate through this vector and find the matching ...
3
votes
2answers
183 views

Is there a way to deduce the signature of a lambda as an mpl sequence?

Is there a way to deduce the signature, result- and parameter-types, of a c++0x lambda as a Boost.MPL sequence, for example a boost::mpl::vector? For example, for a lambda []( float a, int b ) -> ...
3
votes
1answer
339 views

C++ boost variant question

I know that boost::variant uses boost::mpl stuff behind it and has a mpl-compatible typedef types. Let's say I have a simple typedef: typedef boost::variant<bool, int> Variant; Now I have ...
3
votes
1answer
197 views

Using boost::mpl::lambda to remove types from a boost::mpl::list based on static const member variable

I have a list of types defined as: typedef boost::mpl::list<Apple, Pear, Brick> OriginalList; I would like to create a second list that does not contain any fruit, i.e. the resultant list ...
3
votes
4answers
539 views

How do I invoke a non-default constructor for each inherited type from a type list?

I'm using a boost typelist to implement the policy pattern in the following manner. using namespace boost::mpl; template <typename PolicyTypeList = boost::mpl::vector<> > class Host : ...
2
votes
1answer
21 views

Selecting type with mpl::if_ and integer template parameter

The following code works on Visual Studio 2005, but gives me a compiler error when compiled with g++ 4.4.5: #include <boost/mpl/if.hpp> #include <boost/mpl/bool.hpp> template<int ...
2
votes
2answers
64 views

C++: collecting a list of functions that later should be called in macros

I am writing a small library with which enums in C++ should get easier. The syntax is something like: ENUM_START(MyEnum) ENUM_VAL(Val1) ENUM_VAL(Val2) ... ENUM_END This macros create a ...
2
votes
3answers
68 views

boost::mpl typelist function application

I have a function that I want to perform on all the types in a typelist (currently represented by an mpl list --- is this even a reasonable way to approach it?) The key here is that the function only ...
2
votes
1answer
98 views

C++ Boost MPL: how to get rid of vector and callnot internal function?

I am learning Boost.MPL and I am just starting. So please forgive me if solution is obvios. I look at such sample: #include <boost/mpl/vector.hpp> #include <boost/mpl/for_each.hpp> ...
2
votes
1answer
45 views

Promote or not promote - that is the questiion

This code compiles fine with VS2011 dev prev but won't compile with gcc 4.6.1. How to make it "compilable" for the latter? #ifndef PROMOTE_H_INCLUDED #define PROMOTE_H_INCLUDED #include ...
2
votes
1answer
163 views

type wrapper error with boost::mpl::for_each (section 9.1.1 from Abrahams & Gurtovoy book)

The following code is copied almost verbatim from section 9.1.1 of the book C++ Template Metaprogramming: Concepts, Tools, and Techniques from Boost and Beyond by David Abrahams & Aleksey ...
2
votes
3answers
158 views

Getting type names at compile time in C++

I want to get the type name and print it for debug purposes. I use the following code: #include <cxxabi.h> inline const char* demangle(const char *s) { abi::__cxa_demangle(s, 0, 0, NULL); ...
2
votes
1answer
61 views

“Partial application” for template parameteres

I have the following “main” template template < template <typename> class S > struct TT { /*...*/ }; and the template I want to use with TT template <int N, typename ...
2
votes
1answer
182 views

Using mpl::vector to define boost::variant types

I'm using the library boost::variant to store a large number of types. As the number of type is growing, I will soon reach the limit of 20 types. In the documentation it seems possible to define the ...
2
votes
3answers
427 views

C++ convert integer to string at compile time

I want to do something like this: template<int N> char* foo() { // return a compile-time string containing N, equivalent to doing // ostringstream ostr; // ostr << N; // return ...
2
votes
1answer
197 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
130 views

boost::mpl::vector - getting to a type's base-offset

Is it possible to get at the offset of a mpl::vector after performing a mpl::find<seq,type> on it ? Put differently I want to do the compile time equavalent of: #include <vector> ...
2
votes
1answer
73 views

How to get a type relative to a runtime index?

Let's say I have a boost::mpl::list< A, B, C ...>. How do I access one of those types given an index value at runtime? Is it even possible?
2
votes
3answers
138 views

C++ generic programming subtleties

The problem I have is illustrated in the following code. #include <iostream> #define X 4 int main() { std::cout << "should be 4: " << X << std::endl; #define Y X + 4 ...
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
1answer
216 views

mpl style copy_if meta-function for variadic template vector

I've a meta-program that works fine with the regular boost mpl. It looks more like the following. template <class Vector, class ResultKind, class Custom> struct FilterChildrenIfNotOk { ...
2
votes
3answers
1k views

Combination of types using boost::mpl

I have a list of types, from which I want to construct the list of all combinations with two elements. For example: namespace mpl = boost::mpl; typedef mpl::vector<int, long> typelist; // mpl ...
2
votes
4answers
201 views

What's the best way to have a variable number of template parameters?

Please consider this -probably poorly written- example : class Command; class Command : public boost::enable_shared_from_this<Command> { public : void execute() { ...

1 2