C++Guns – RoboBlog

29.07.2015

DerivedFunctor - fancy

Filed under: Allgemein — Tags: — Thomas @ 22:07

In C++11 kann man von einer Funktion erben. Krass. Lambdas sind krass. Das typedef musste sein, sonst hat er nicht compiliert. Ist vllt aber nur ein Compilerbug und bald nicht mehr nötig. auto foo = [](){return 42;}; class DerivedFunctor : public decltype(foo) { typedef decltype(foo) type; public: DerivedFunctor(type foo) : type(foo) { } auto operator()() […]

26.07.2015

Replace runtime constant wich template variables

Filed under: Allgemein — Tags: — Thomas @ 09:07

void version1(int i, int h) { // if(h) is evaluated every call if(h==0) { } else if(h==1) { } else { } } template void version2(int i) { // if(h) is evaluated at compile time if(h==0) { } else if(h==1) { } else { } } void func(int h) { // h is a runtime […]

Powered by WordPress