Tagged Questions
14
votes
10answers
883 views
When/Why ( if ever ) should i think about doing Generic Programming/Meta Programming
IMHO to me OOPS, design patterns make sense and i have been able to apply them practically.
But when it comes to "generic programming /meta programming" of the Modern C++ kind, i am left confused.
...
3
votes
1answer
155 views
CompileTimeChecker from Modern C++ Design not working as expected
I've recently started reading Modern C++ Design by Andrei Alexandrescu. After reading Compile-Time Assertions, I tried the following code:
template<bool> struct CompileTimeChecker
{
...
2
votes
3answers
127 views
Typesafe callback system in modern C++
I'm working at a module that use a callback system that wasn't implemented very nice. The clients are registering with an ID and will be called back with a variable (or two, or none). The problem is ...
0
votes
3answers
208 views
C++ Template : Choosing overloaded functions using implicit conversion to template instantiated type!
Consider these overloaded functions,
void fun(Int2Type<1>) {}
void fun(Int2Type<2>) {}
void fun(Int2Type<3>) {}
void fun(Int2Type<4>) {}
I want to call these in this way,
...