Recursive lambdas in C++
·1575 words·8 mins
It’s hard to imagine functional programming without lambdas or recursion. True to the promise of being a multi-paradigm programming language, C++ has both these tools available. However, until recently, they couldn’t be used together. This post discusses how to work around this limitation and make use of recursion with lambdas in C++.
More ...