/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.cppstories.com
| | cppstories.com
1.1 parsecs away

Travel
| | Maybe I'll be boring with this note, but again I need to write that this was another good year for C++! Here's a bunch of facts: Visual Studio 2015 was released with great support for C++14/17 and even more experimental features. Long-awaited GCC 5.0 was released at the beginning of the year.
| | hashblog.thepolyglotprogrammer.com
3.7 parsecs away

Travel
| | On this post I intend to walk down memory lane a bit to understand what exactly are Smart Pointers? Where do they come from? And of course, how do they work
| | eyakubovich.github.io
2.8 parsecs away

Travel
| | The guidance around function arguments and smart pointers is quite old, yet I still see it used incorrectly. In this post, we'll explore the guidance and the costs of not following the advice. C++ Core Guidelines make this point clear: F.7: For general use, take T* or T& arguments rather...
| | ricardomartins.cc
11.6 parsecs away

Travel
| UnsafeCell is the keystone for building interior mutability types in Rust, such as Cell, RefCell, RwLock and Mutex. In this article we'll explore how it works and how it is used by those types.