Category Archive for "Lambda"

What is a lambda expression, and when should I use one?

A lambda expression in C++11 is a concise way to create an anonymous function or a function object at the place of its use. It is essentially a syntactic sugar that allows you to w...