Explore >> Select a destination


You are here

ericniebler.com
| | herbsutter.com
4.1 parsecs away

Travel
| | C++ "move" semantics are simple, and unchanged since C++11. But they are still widely misunderstood, sometimes because of unclear teaching and sometimes because of a desire to view move as something else instead of what it is. This post is an attempt to shed light on that situation. Thank you to the following for their...
| | www.foonathan.net
4.8 parsecs away

Travel
| | If you want a function that returns multiple values, you'd use a reference and assign the outputs to that. But using a reference has a few drawbacks - it is not obvious in the caller, requires default construction etc. This post will explain why you sometimes need output parameters and how to fix their problems.
| | hellocplusplus.com
4.4 parsecs away

Travel
| | Learn the basics of C++ move semantics and how to use this language feature. This article is useful for programmers of all skill levels.
| | shafik.github.io
29.9 parsecs away

Travel
| C++ initialization, arrays and lambdas oh my!