I use C++ 11 features actively. I have program created in Visual Studio 2013 that relies on lambdas to run multiple threads (lambda represents task, and thread receives lambda i
Step into Lamba's .run() go next/step (jump initializations) until the following call:
.run()
std::forward<>(args)(...)
Step into this one. It will lead you to you lambda body code.