Post #643 2.77K Dec 31, 2019, 07:16 UTC A bit of C++ template metaprograming in order to finish the yearhttps://akrzemi1.wordpress.com/2019/12/23/short-circuiting-in-meta-functions/ Andrzej's C++ blog Short-circuiting in meta-functions Short-circuiting in logical operations is a very useful and an often used feature: Should cond_a() evaluate to false, cond_b() is guaranteed not to be evaluated. This is useful for two reasons. One…