C++ 11 Lambda Functions

In this video we’ll look at a new style for implementing anonymous functions in C 11 and above. They’re called Lambda functions, and they allow us to define little functions right where we need them, instead of adding a prototype, and a function in some header. The Lambda syntax does not offer anything we could not otherwise program, but they are convenient, and they can help to reduce the overall amount of code in our projects. Become a patron and support What’s a Creel programming vids on Patreon: w
Back to Top