/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.modernescpp.org
| | www.foonathan.net
8.6 parsecs away

Travel
| | When C++11 introduced move semantics, it also added two important helper functions: std::move and std::forward. They are essential when you want to manually indicate that you no longer care about an object or need to propagate the value category in generic code. As such, Ive used them countless times in the past. However, they are functions. Plain, old, standard library functions. This is problematic for multiple reasons.
| | thbecker.net
8.7 parsecs away

Travel
| | [AI summary] An educational article by Thomas Becker explaining the purpose and mechanics of C++11 rvalue references, move semantics, and perfect forwarding.
| | arne-mertz.de
10.3 parsecs away

Travel
| | Having covered the basics of `auto` and rvalue references, there is a third big new C++ feature definitely worth knowing about: creating function objects on the fly with lambda expressions.
| | www.e4developer.com
18.6 parsecs away

Travel
| In my career as a software developer, I have interviewed over 100 people. Most of these interviews were face to face interview involving coding on paper or a...