Explore >> Select a destination


You are here

www.foonathan.net
| | www.bfilipek.com
14.0 parsecs away

Travel
| | What do you do when the code for a variable initialization is complicated? Do you move it to another method or write inside the current scope? In this blog post, I'd like to present a trick that allows computing a value for a variable, even a const variable, with a compact notation.
| | www.fluentcpp.com
12.9 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.
| | eyakubovich.github.io
11.1 parsecs away

Travel
| | The Google Style Guide (GSG) for C++ has become popular outside of just Google. But I don't like it at all. There... I said it. Now I want to take this opportunity to explain why I feel so strongly about it. GSG "style" The general observation is that the style...
| | dmitripavlutin.com
62.6 parsecs away

Travel
| A pure function always returns the same value for the same arguments and produces no side effects.