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 […]
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 […]