/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.cplusplus.com
| | www.foonathan.net
3.8 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...
| | deniskyashif.com
3.4 parsecs away

Travel
| | In this article, we'll define a basic regular expression language using a context-free grammar and learn how to parse its strings in linear time using the recursive descent method.
| | entangledlogs.com
4.3 parsecs away

Travel
| | Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha...
| | studiofreya.org
24.1 parsecs away

Travel
| [AI summary] A C++11 variadic template example demonstrating perfect forwarding to wrap constructor calls for a structure.