/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
| | akrzemi1.wordpress.com
2.0 parsecs away

Travel
| | The language feature in C++17 known as class template argument deduction was intended to supersede factory functions like make_pair, make_tuple, make_optional, as described in p0091r2. This goal has not been fully achieved and we may still need to stick to make_ functions. In this post we will briefly describe what class template argument deduction is,...
| | mpark.github.io
1.5 parsecs away

Travel
| | Can we work around the limitations of non-type template parameters?
| | www.bfilipek.com
0.9 parsecs away

Travel
| | Let's put C++17 in practice! One of the good ways to do it is to take part in a coding challenge. So together with Jonathan Boccara from Fluent C++ we invite you to participate in "The Expressive C++17 coding challenge". The Expressive C++17 coding challenge Jonathan made a few contests on his blog (for example this one), and I thought it might be fun to do something similar for C++17.
| | bannalia.blogspot.com
4.3 parsecs away

Travel
| std::unordered_map is a highly configurable class template with five parameters: template< class Key, class Value, class Hash ...