 
      
    | You are here | www.foonathan.net | ||
| | | | | www.bfilipek.com | |
| | | | | 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 | |
| | | | | 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 | |
| | | | | 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 | |
| | | A pure function always returns the same value for the same arguments and produces no side effects. | ||