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.
59
votes
0answers
2k views
+50
more spirit madness - parser-types (rules vs int_parser<>) and meta-programming techniques
The question is in bold at the bottom, the problem is also summarized by the distillation code fragment towards the end.
I am trying to unify my type system (the type system does to and from from ...
41
votes
10answers
1k views
Automatically pick a variable type big enough to hold a specified number
Is there any way in C++ define a type that is big enough to hold at most a specific number, presumably using some clever template code. For example I want to be able to write :-
...
15
votes
16answers
3k views
Does anyone use template metaprogramming in real life?
I discovered template metaprogramming more than 5 years ago and got a huge kick out of reading Modern C++ Design but I never found an opertunity to use it in real life.
Have you ever used this ...
13
votes
7answers
270 views
Compile-time constant id
Given the following:
template<typename T>
class A
{
public:
static const unsigned int ID = ?;
};
I want ID to generate a unique compile time ID for every T. I've considered __COUNTER__ ...
10
votes
1answer
241 views
C++ templates: how to determine if a type is suitable for subclassing
Let's say I have some templated class depending on type T. T could be almost anything: int, int*, pair <int, int> or struct lol; it cannot be void, a reference or anything cv-qualified though. ...
9
votes
3answers
176 views
How to use typedef for a generic class in c++
I am trying to use unordered_map. But in some of the servers we don't have tr1 library. In those cases I want to use the map.
So, I want to write a header file where I will use one of the following ...
9
votes
6answers
462 views
C++ compile time function execution
I have string tags in my code that are converted to numbers and used to search values in a tag-value structure.
I have something like this:
void foo()
{
type value = search("SomeTag");
}
Where ...
8
votes
1answer
180 views
Get lambda parameter type
I would like some way to get the first parameter type of a lambda function, is this possible?
e.g.
instead of:
template<typename T>
struct base
{
virtual bool operator()(T) = 0;
}
...
8
votes
2answers
273 views
getting a const_iterator from iterator [closed]
Possible Duplicate:
Obtaining const_iterator from iterator
I want to write a metafunction which returns the corresponding const_iterator from an iterator
template <class Iterator>
...
8
votes
1answer
194 views
templated template parameter list with template types
C++ allows templated template parameters like this:
template <template <bool> class T>
struct something1 {};
bool type can be replaced by a typedef (so there is no requirement for the ...
7
votes
1answer
112 views
Specialization that is itself a template
I have a template class that I have some specializations for.
But the next specialization is a template itself. How do you specify this:
template<typename T>
class Action
{
public: void ...
7
votes
1answer
89 views
How to deduce, at compile time, the root of an inheritance tree common to two types if one exists?
I have a problem where I need to discover the common ancestor of two types (with one or zero base classes) if it exists. Is it possible to build a type trait to solve this problem? In code:
...
6
votes
6answers
127 views
Detecting if a type can be derived from in C++
I have the following template class and a (global) variable of its type:
template <typename ClassT>
struct ClassTester : public ClassT {
typedef ClassT type;
};
ClassTester<int> ...
6
votes
2answers
142 views
Ambiguous overload on argument-less variadic templates
Related:
Ambiguous overload accessing argument-less template functions with variadic parameters
Simple variadic template function can't instantinate
Why is this variadic function ambiguous?
...
6
votes
1answer
92 views
inheriting from an enable_if'd base
I'm trying to partially specialize a trait for arrays of non-chars:
template<typename T>
struct is_container : std::false_type {};
template<typename T, unsigned N>
struct ...
6
votes
5answers
355 views
Dynamic Dispatch without Virtual Functions
I've got some legacy code that, instead of virtual functions, uses a kind field to do dynamic dispatch. It looks something like this:
// Base struct shared by all subtypes
// Plain-old data; can't ...
6
votes
10answers
2k views
What are the coolest examples of metaprogramming that you've seen in C++?
This question exists because it has
historical significance, but it is not
considered a good, on-topic question
for this site, so please do not use it
as evidence that you can ask similar
...
5
votes
3answers
90 views
Getting the type of a member
Is there an easy way to retrieve the type of a member?
In C++03
struct Person
{
std::string name;
int age;
double salary;
};
int main()
{
std::vector<Person> ...
5
votes
1answer
85 views
Counting With Template Metaprogramming?
I've been trying to think up a creative solution to this problem (on and off) for some time, but I have not as of yet been able to. I recently considered that it might be solvable with template ...
5
votes
1answer
367 views
C++0x nested initializer lists
I would like to use C++0x new initializer list feature to initialize a std::vector with a compile time defined number of items for a new API I'm currently working on. Something like this:
...
5
votes
4answers
205 views
Detecting basic_string instantiation
I wrote the following code to determine if a type is an instantiation of std::basic_string:
template <typename T>
struct is_string
{
enum { value = false };
};
template <typename charT, ...
4
votes
5answers
141 views
Why are type_traits implemented with specialized template structs instead of constexpr?
The question is clear. Is there any reason why the standard specifies them as template structs instead of simple boolean constexpr?
In an additional question that will probably be answered in a good ...
4
votes
2answers
99 views
SyntaŃtic sugar: automatically creating simple function objects
I am to implement a set of class templates and two special variables, _1 and _2.
They should make the following a legal code:
// Sort ascending
std::sort(a, a+5, _1 > _2);
// Output to a stream
...
4
votes
1answer
148 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
2answers
155 views
Arguments to a template function aren't doing any implicit conversion
For some strange reason, I can't get the template arguments in this one piece of code to implicitly cast to a compatible type.
#include <type_traits>
template <typename T, unsigned D>
...
4
votes
2answers
202 views
Boost MPL list of templates
I want to take a list of class templates, T1, T2, ... TN and have a list an MPL list of classes, where each template is instantiated with the same parameter.
boost::mpl::list cannot be used with a ...
3
votes
2answers
81 views
get value_type of dereferencable types
I how would I achieve the following for any derefernable type?
I find my current solution lacking since I need to do a class template specialization for every type I want it to work with:
...
3
votes
3answers
92 views
Template specialization for a range of values
I wish to write a template structure foo such that foo<N>::value_type is the nearest sized integer (rounding up) to N. For example foo<32>::value_type => uint32_t, ...
3
votes
2answers
72 views
C++ method template specialization for only one index
I'd like to perform a template specialization for only one index of a class. For example, in the following code I want to create a specialization whenever the first class is int, regardless of what ...
3
votes
2answers
308 views
c++ template functions with variable arguments
Is it possible to write a c++ template function which takes a variable number of input variables of different types (number of input can be limited to say 10)?
For example take a function sql_exec() ...
3
votes
2answers
72 views
C++ template types nested in a template class definition
I've a situation where there is a class definition that looks like this:
template<class T>
class Alpha< Bravo<T> >
{
....
};
I'm compiling with gnu g++ and the compiler is ...
3
votes
3answers
190 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
174 views
C++0x TMP compilation speed
This question focuses on template metaprogramming constructs. I have found two articles (one and two, two however doesn't show hard evidence, but I trust the claims) that provide a evidence showing ...
3
votes
3answers
153 views
How to declare a templated function with an optional compile-time parameter?
I want a function with this interface.
func<Type1,CompileOption>( Type2 value)
//or
func<Type1>( Type2 value)
The first compile-time parameter is a type. It is require in every ...
2
votes
1answer
88 views
Perform overload resolution with template meta-programming
Inspired by another question I tried to find a way to deduce the type
of an overload member function given the actual argument used to call
that function. Here is what I have so far:
#include ...
2
votes
2answers
62 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
2answers
91 views
Template Metaprogramming: Primitive Recursive?
In this article, the writer asserts:
...the program did show that the template instantiation mechanism is a primitive recursive language that can perform nontrivial computations at compile time.
...
2
votes
2answers
70 views
How to detect whether a type is a lambda expression at compile time?
Suppose I have a type my_struct enclosing a member variable, f, which is a function. It's possible for f to be a c++11 lambda function.
Since it is illegal to assign to lambda objects, I'd like to ...
2
votes
3answers
114 views
How to check whether a type is std::vector::iterator at compile time?
I have a problem where I need to detect whether a given type is an instance of a known nested type such as std::vector::iterator at compile time. I'd like to create the type trait ...
2
votes
1answer
103 views
C++ Template Metaprogramming Specialization Ambiguity
So I'm just starting out with template metaprogramming and I have been writing a string class. I implemented ToString, Concat, CharAt, and Length without too many template-related problems. I was ...
2
votes
3answers
148 views
detecting typedef at compile time (template metaprogramming)
I am currently doing some template metaprogramming. In my case I can handle any "iteratable" type, i.e. any type for which a typedef foo const_iterator exists in the same manner. I was trying to use ...
2
votes
3answers
83 views
Map two types at compile time
I have a set of types related with a one-to-one relation, for example:
TypeA ---> Type1
TypeB ---> Type2
TypeC ---> Type3
I know these relation at compile time.
Then, I have a template ...
2
votes
2answers
106 views
Is it possible to do compile-time execution in OCaml, similar to C++ template metaprogramming?
In C++, recursive templates and constant values as template parameters allows to do interesting examples of code generation and compile-time execution, such as the factorial.
Is it possible to do ...
2
votes
5answers
106 views
How does this meta-programming compile down?
Here's an example from wikipedia that displays C++ template meta-programming:
template <int N>
struct Factorial
{
enum { value = N * Factorial<N - 1>::value };
};
template <>
...
2
votes
3answers
543 views
Why is template meta-programming useful for C++? [closed]
Possible Duplicate:
Does anyone use template metaprogramming in real life?
I'll try and keep this in the standard Q&A format:
Why is real template-metaprogramming useful in c++? More ...
2
votes
2answers
107 views
How to determine what compiler does with a metaprogram? (for boost.proto)
How do I determine what my compiler (g++) is doing with template code?
I am using boost.proto (an expression-template library) to evaluate some maths expressions at compile time. The code evaluates ...
2
votes
1answer
96 views
Recursively unhide base class members
I try to write a class that takes a tuple of functions as its argument and overloads operator() for all argument_typeS of the function. Right now this looks like this:
template<typename T>
...
2
votes
4answers
264 views
Boost: dereference a template argument if it's a pointer
What can I use to dereference a template argument if it's a pointer (or a smart pointer), or leave it as is if it's not?
template<class T> void subf(const T& item)
{
item.foo();
}
...
2
votes
2answers
200 views
Extract variadic template parameter pack and use it in another variadic template in a type traits meta-function?
I want to determine if any variadic class template is the base of another class. Typically I'd use std::is_base_of, but I don't think my use case fits, and I'm not sure if there's already something ...
2
votes
2answers
129 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>
...