/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

flamingdangerzone.com
| | eli.thegreenplace.net
4.0 parsecs away

Travel
| | [AI summary] This article explains the C++11 variadic template feature, which replaces the unsafe and cumbersome C-style variadic functions with a compile-time safe and flexible system.
| | www.kuniga.me
4.0 parsecs away

Travel
| | NP-Incompleteness:
| | jguegant.github.io
3.6 parsecs away

Travel
| | Trivia: As a C++ enthusiast, I usually follow the annual C++ conference cppconf or at least try to keep myself up-to-date with the major events that happen there. One way to catch up, if you can't afford a plane ticket or the ticket, is to follow the youtube channel dedicated ...
| | www.foonathan.net
25.4 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...