Explore >> Select a destination


You are here

educatedguesswork.org
| | hellocplusplus.com
4.0 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.
| | www.evanmiller.org
5.2 parsecs away

Travel
| | A review of Rust, the programming language built for safety - not necessarily for comfort.
| | berthub.eu
3.1 parsecs away

Travel
| | Welcome back! In part 4 we went over the nitty-gritty of lambdas and how to store them, we explored the relation between the various C++ algorithms and containers, plus we took a stroll through some non-standard containers with exceptional capabilities. Note: part 1 is here. In this probably final part 5, we'll be going over some of the most powerful stuff in modern C++: "perfect" reference counting and the concept of std::move.
| | www.cppstories.com
26.7 parsecs away

Travel
| What do you do when the code for a variable initialization is complicated? Do you move it to another method or write inside the current scope? In this blog post, I'd like to present a trick that allows computing a value for a variable, even a const variable, with a compact notation.