/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
| | www.fluentcpp.com
5.3 parsecs away

Travel
| | Variadic templates allow any number of template parameters of any type. In this article we see how to do a variadic number of parameters of the SAME type.
| | www.foonathan.net
5.3 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...
| | cppstories.com
0.5 parsecs away

Travel
| | C++11 conformance GCC 4.81 - 100% Clang 3.3 - 100% Intel 14.0 - 84% Visual C++ 2013 - 66% Another year is almost over so it is a good time to check what is going on with C++. This time more stats and real data compared to my post from the previous year.
| | mpark.github.io
22.1 parsecs away

Travel
| A simpler definition and implementation of `std::decay`.