Performance Issues for C++11 Lambda Expressions
This blog is about the difference between “capture by value” and “capture by reference” in C11++ lambda expressions. My point is that if copying a captured object is both legal and cheap, capture by value may yield faster code than capture by reference. C++ lambda expressions let the compiler do the tedious work of creating [...] Read more





