Explore >> Select a destination


You are here

studiofreya.org
| | eli.thegreenplace.net
1.2 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.foonathan.net
2.2 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...
| | www.bfilipek.com
2.0 parsecs away

Travel
| | Variadic Templates from C++11 is probably not a feature that you use on a daily basis. But recently, I've come across one refactoring example where I've decided to give a try and apply variadics. Intro When I was doing some work in some old UI code I've noticed several similar lines of code that looked like that:
| | www.fluentcpp.com
26.5 parsecs away

Travel
| Template metaprogramming is often harder to understand than regular code. But some simple guidelines can make it a lot more expressive.