/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

hellocplusplus.com
| | herbsutter.com
3.7 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...
| | pagefault.blog
3.2 parsecs away

Travel
| | C++11 move semantics can be a source of misunderstandings if the mechanics are not understood. This post clears up the most common one.
| | blog.knatten.org
3.8 parsecs away

Travel
| | In which I briefly mention what pure functional programming is, explain why this can be slow in C++, and use move semantics to solve that problem. Be warned that this post is a bit longer than usual for this blog, and that it assumes more knowledge of C++11 than my posts usually do. Pure functional...
| | www.cppstories.com
50.7 parsecs away

Travel
| Let's take a pair of two types - what can you do with such composition? In this article, I'll describe std:optional - a new helper type added in C++17. It's a wrapper for your type and a flag that indicates if the value is initialized or not. Let's see where it can be useful and how you can use it.