Explore >> Select a destination


You are here

hackingcpp.com
| | www.kuniga.me
5.2 parsecs away

Travel
| | NP-Incompleteness:
| | www.cppstories.com
3.2 parsecs away

Travel
| | When you see an article about new C++ features, most of the time you'll have a description of major elements. Looking at C++17, there are a lot of posts (including articles from this blog) about structured bindings, filesystem, parallel algorithms, if constexpr, std::optional, std::variant... and other prominent C++17 additions. But how about some smaller parts?
| | www.foonathan.net
4.9 parsecs away

Travel
| | Just like regular function parameters, template parameters can also have default parameters. For class templates, this behaves mostly just like default function arguments: if you pass fewer template arguments than required, default template arguments are used to fill the remaining places. However, for function templates, it gets more complicated as template parameters for functions can be deduced by the normal function arguments. This leads to some interesting side-effects. In particular, default argumen...
| | joeprevite.com
23.3 parsecs away

Travel
| My notes from Chapter 4 of the Rust Lang Book.