A lambda is an unnamed function that is useful (in actual programming, not theory) for short snippets of code that are impossible to reuse and are not worth naming. In C++, the minimal lambda expression looks like: []{} // lambda with no parameters that does nothing [] is the capture list and {} the function body. More @Wikipedia
Hover over any link to get a description of the article. Please note that search keywords are sometimes hidden within the full article and don't appear in the description or title.