Template meta-programming is a meta-programming technique in which templates are used by a compiler to generate temporary source code, which is merged by the compiler with the rest of the source code and then compiled.

learn more… | top users | synonyms

1
vote
1answer
55 views

Merge two variadic templates in one

Im trying to implement a variadic template wrapper of the loki typelist. Merging two typelists in loki-style is easy, but im having problems with merge in variadic-template style. This is my ...
1
vote
2answers
67 views

Decltype and templates - any way to make decltype machinery less complicated?

I was playing around with implementing group_by method in a generic way and I have maybe implemented it(except it doesnt work for C arrays), but still code looks ugly to me... Is there easier way to ...
0
votes
1answer
45 views

Problems with Delegate Template Metaprogramming

The below code was adapted by another programmer from Yingle Jia's code and I'm having to port it to Linux. It compiles perfectly fine in VS2010, but when I try building in Ubuntu with gcc 4.6.3, it ...
1
vote
4answers
75 views

How to build a compile-time key/value store?

I have a problem where I need to map an integer at compile time to another integer. Basically, I need the compile-time equivalent of std::map<int,int>. If a key is not found in the map, I'd like ...
1
vote
1answer
46 views

Implementing the A(:,k)=b; Matlab-like syntax in a C++ matrix library: avoiding const-ness

I have developed an expression templates-based C++ matrix class of my own. I have also implemented a Range class to enable Matlab-like reads as cout << A(Range(3,5),Range(0,10)) << endl; ...
4
votes
1answer
148 views

Variadic template metaprogramming : a bug in clang++ or g++?

Consider this variadic template madness to cast an array from one type to another: #include <array> #include <type_traits> template <typename Type> class Converter { public: ...
0
votes
1answer
32 views

Decisions using Template Tags

I have a templated class which I need to instantiate depending on command line arguments. There must be a better way than what I can think of: if (optionA == 1){ if (optionB == 2){ ...
1
vote
1answer
35 views

Implementing the A(:,k)=b; Matlab-like syntax in a C++ matrix library

I have developed an expression templates-based C++ matrix class of my own. I have overloaded the () operator so that I can read or write element matrices as, for example, cout << A(i,j) ...
0
votes
1answer
37 views

Get dummy reference to an object of type given by template argument

There was an std:: templated function that allowed getting a dummy reference to an object of a given type even though that type had private constructors. I'm forgetting it, and couldn't find it on ...
5
votes
2answers
359 views

c++ power of integer, template meta programming

I want to make a function which returns a power of integer. Please read the fmuecke's solution in power of an integer in c++ . However, I want to generalize his solution to the arbitrary type T. ...
0
votes
1answer
42 views

CRTP inheriting from its default instantiation

I need to represent a hierarchy like this: template<typename T> struct X { }; template<typename Derived = void> struct Y : Y<void> { //Note: not trying to use SFINAE here ...
0
votes
2answers
90 views

How to implicitly cast between C++ templates with different template parameters

I am trying to create a C++ template class wrapping an integer value and checking that this value is always inside a valid range, so the simplified code is the following one: struct OutOfRangeError ...
6
votes
1answer
91 views

Detect if two types are a specialization of a same class template?

I would like to know how to write a type_traits class to detect whether two types are specializations of the same template class. The big problem is that it should work for mixed types/non-types ...
1
vote
2answers
65 views

Using metaprogramming for message queue management

I am implementing a communication mechanism in C++ that is designed with message queues and message classes. That is, an abstract parent Message, and class Communication, where there exists a method ...
2
votes
1answer
91 views

Fold arbitrary number of pairs of iterators into a new iterator. Metaprogramming for a nice syntax?

I have an algorithm that takes two ranges and returns a range that iterates, computing on the fly, a special subset of elements in the first range based on the contents of the second. The special ...
1
vote
1answer
49 views

Convert between different kind of sample type

I want to use a template to convert between different sample types template<class T,class U> void convert(const T* source, U* dest, size_t n) { do { double ...
4
votes
4answers
264 views

What are the Differences between C++ Templates and Java/C# Generics and what are the limits? [closed]

I read an interesting Article/Thread/Discussion from here and i got following questions: What are the limitations of Java/C# generics? What is possible with C++ Templates that is impossible with ...
10
votes
3answers
150 views

Profiling template metaprogram compilation time

I'm working on a C++ project with extensive compile-time computations. Long compilation time is slowing us down. How might I find out the slowest parts of our template meta-programs so I can ...
0
votes
3answers
110 views

How do I determine the number of parameters of a std::function?

I have the following problem. Say you want to write a generic function that can take a lambda expression. I understand that if the parameter is of type std::function, then I could not only use ...
1
vote
1answer
72 views

boost::mpl transform operation meta-function argument error

In the Boost MPL web-documentation, it talks about passing meta-function classes as arguments to boost::mpl::transform. The meta-function argument, in this case, should be an operation of some sort ...
1
vote
1answer
90 views

Function argument type

My code is supposed is to determine if the given function takes the given type as a parameter. Answering your future "what for" questions I will shortly answer: to use it with boost::enable_if ...
5
votes
1answer
173 views

Variadic template function: specialize head/tail and empty base case

I'd like to have a variadic template function inside a class. The variadic template arguments are chars which should be processed in a loop-like manner. So I thought of writing it like in haskell with ...
2
votes
4answers
294 views

Compute nth prime at compile time [closed]

The C++11 features, with constexpr and template argument packs, should in my opinion be strong enough to perform some rather complex computations. One possible example for which I have a practical ...
0
votes
2answers
81 views

StackPointer template

I'm reading "Modern C++ design" and hit on an idea to build a class that would act like a pointer but it would allocate object on the stack instead of on the heap. It could be used in functions that ...
2
votes
1answer
249 views

C++11: How to check if a type is an instantiation of a given class-template of “heterogeneous” NON-TYPE parameters?

I know it's trivial to check if a type is an instantiation of a class-template taking TYPE parameters, as explained here: How can I check if a type is an instantiation of a given class template? ...
0
votes
2answers
75 views

Overloading operators with C++ metaprogramming templates

I'm using some template meta-programming to solve a small problem, but the syntax is a little annoying -- so I was wondering, in the example below, will overloading operators on the meta-class that ...
1
vote
2answers
320 views

Why doesn't the overload (using enable_if) with universal reference work?

Using MS Visual C++ 2012 version 11.0.51106.01 Update 1: int x() { return 3; } template <typename Fun> typename std::enable_if<std::is_same<Fun, int()>::value, int>::type ...
0
votes
2answers
174 views

C++ Template Metaprogramming- not sure I quite get the fuss?

As I understand it normal C++ code is translated into assembler at compile time, which is then executed by the CPU at run-time. So I do not quite understand what the fuss is with the advantages of ...
5
votes
2answers
101 views

Convert an mpl sequence of sequences into a trie

The problem looks simple enough, basically I have a sequence of sequences, something like: typedef mpl::vector< mpl::vector<mpl::_1, mpl::_2>, mpl::vector<mpl::_1, mpl::_2, ...
0
votes
1answer
98 views

Deduce type from (member) function

Is there a simple way to deduce the "type" of a member function? I would like to deduce the type of the following (member) function: struct Sample { void func(int x) { ... } }; void func(int x) { ...
1
vote
2answers
765 views

How to detect the presence and type of a member variable given its name?

I know how to write a class that can detect at compile time if a given class T has a member with a given name with given type Type, e.g. #include <type_traits> template <typename T, ...
0
votes
0answers
64 views

Loki :Typelist.h

I am trying examples of Typelist and also read the example given in following link. Typelists visitor pattern example But in that example they have not used the Typelist.h provided by loki. My ...
1
vote
2answers
64 views

Accessing public static members of a templated class without instantiating the template?

I have a templated class and want to access a public static variable from outside it, but I can't figure out any way to do so without instantiating the template. This code: template<class T> ...
2
votes
1answer
156 views

Overloading on callable with callable parameter

I am trying to translate C# code like below to C++: void SomeCall(Action action) { // do things like action(); } void SomeCall(Action<Action> action) { // define some action1 // ...
2
votes
2answers
131 views

C++ - is it possible to extract class and argument types from a member function type in a template?

I would like to wrap member functions that conform to the type 'void (ClassType::Function)(ArgType)' with a templated class. Later, I want to pass an instance of ClassType to an instance of this ...
0
votes
1answer
78 views

Erasing type from a typelist c++ metaprogramming

What is the meaning of Erasing type from a typelist in c++ meta programming. Can any one suggest any simple example. class null_typelist {}; template <class H, class T> struct ...
1
vote
4answers
134 views

negation of std::integral_constant<bool>

Sorry for asking so simple question, but I cannot find the answer easily. Google says nothing interesting about "C++ negation integral_constant" and similar queries. Is there in C++11 any trait that ...
15
votes
3answers
444 views

What is the difference between a trait and a policy?

I have a class whose behavior I am trying to configure. template<int ModeT, bool IsAsync, bool IsReentrant> ServerTraits; Then later on I have my server object itself: template<typename ...
1
vote
1answer
76 views

Boost signals - type passed as parameter

I found this C++ code that uses boost signals and I'm trying to understand it. // A boost::signal wrapper structure template <typename Signature> struct SignalBase : public boost::noncopyable ...
0
votes
1answer
44 views

Determine signatures of overloaded member functions

Given some_type with a member function f it is possible to determine f's signature like this (and say let us place it in a tuple): template <typename R, typename T, typename... A> ...
6
votes
2answers
113 views

How to abstract away the integer type in a mathematical software

I'm designing a mathematical software with algorithms that work for generic integer types such as machine ints, or GMP integers. For performance one usually wants to work with machine ints, but if ...
4
votes
2answers
114 views

Is typename / class needed when declaring template

When declaring template params is typename / class necessary (as in language could not work with diff syntax I suggest below) . I know template params can be integers so you would have to pick to ...
1
vote
2answers
123 views

c++ function types in typedefs

Why doesn't the following typedef declaration for a function type compile? typedef void( int ) void_from_int_t;
0
votes
2answers
100 views

Compile issue with tuples and variadic templates

I'm having an issue with a seemingly complicated problem. I'm trying to make an iterator class for a zip function (trying to mimic python's generator zip function). I have the entire class at ...
14
votes
1answer
278 views

Why are is_swappable and is_nothrow_swappable not included in C++11?

I was surprised to discover that is_swappable<T> and is_nothrow_swappable<T> are not among the new C++11 type_traits metafunctions. They are very useful for propagating noexcept for ...
5
votes
1answer
204 views

Passing an element to a lambda by reference-to-const

Inside an algorithm, I want to create a lambda that accepts an element by reference-to-const: template<typename Iterator> void solve_world_hunger(Iterator it) { auto lambda = [](const ...
5
votes
1answer
207 views

How to properly chain boost::mpl::inherit_linearly and boost::mpl::inherit so placeholders can be resolved?

Say I have these types: template < class T, template <class> class Storage > struct AbstractFactoryUnit { virtual ~AbstractFactoryUnit() {} virtual typename Storage< T ...
0
votes
0answers
84 views

How to efficiently generate RTTI

I'm trying to build an entity system. Each entity has a collection of components associated with it and each component is of a unique type. All components are derived from a base component class. I ...
3
votes
1answer
83 views

BOOST_PP_ITERATION for variable length arguments

I'm wanting to incorporate a luabind into one of my projects. To do so I need to provide a function which behaves similar to call_function (see below). This function uses some template magic (courtesy ...
17
votes
4answers
430 views

How to make generic computations over heterogeneous argument packs of a variadic template function?

PREMISE: After playing around with variadic templates a little bit, I realized that achieving anything which goes slightly beyond the trivial meta-programming tasks soon becomes pretty cumbersome. In ...

1 2 3 4 5 6