Parameterized Functions
I was recently playing around with Perl 6, where I encountered dynamic variables, which are looked up in the dynamic scope at runtime. This means that »
I was recently playing around with Perl 6, where I encountered dynamic variables, which are looked up in the dynamic scope at runtime. This means that »
In the previous installment of this series we dealt with if statements, function style casts and grouping digits of numbers. This time, our focus will lie »
Recently I stumbled upon a piece of C++ code that fails to compile with Clang, although it works with gcc just fine. Since I was unable »
In the previous installment of this series we dealt with the function declaration from hell. This post will focus on the if/else that follows it »
In the previous installment we discovered the ancient Digraphs and Trigraphs, as well as the more modern lambda expressions. This post focuses on the type from »
This article is intended to be a comprehensive but still understandable and beginner-friendly overview over lambda functions in C++. Any section marked as "advanced" can be »
While implementing a logging facility I recently stumbled across a problem that can be reduced to the following: Inside a variadic function template, if the log »