Motivation

My motivation to start this blog mainly was to have a memory hook for myself.
I'm experiencing to investigate repeatedly on the same problems multiple times in slightly different contexts, when these appear in e.g. new project setup cycles.
May be my markers might also be helpful for other software developers ...

3/08/2014

C++11 simple lambda predicate syntax sample

I have done a simple sample how to use a C++11 lambda expression as predicate for a particular algorithm.


pred1 demonstrates the result type of a lambda expression is a function pointer.
pred2 demonstrates how to shorten the lengthy type declaration.