Tag Archives for " underscore "

The Shortest Name There Is

Published June 18, 2019 - 0 Comments
underscore

The names with give to the objects in code are a fabulous tool to express our intentions for the next developer to read them. Especially with good names. But in some cases, the name of an object becomes a burden. It happens when that object doesn’t make much sense in the first place, but for […]

Template Partial Specialization In C++

Published August 11, 2017 - 4 Comments

Today I want to share something about the right way to emulate partial function template specialisation in C++. I learnt it by watching Arthur O’Dwyer’s CppCon talk Template Normal Programming. Actually, the technique for emulating function template partial specialization through class template specialization is well known, but the naming convention used by Arthur is the […]