Did you know?
Tricks with Default Template Arguments
by Jonathan Müller
From the article:
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 arguments of template parameters don’t need to be put at the end!
Let’s take a look at a couple of things we can do with default template arguments...
Add a Comment
Comments are closed.