You are viewing a single comment's thread. Return to all comments →
template <bool a> int reversed_binary_value() { return a; } template <bool a, bool b, bool... d> int reversed_binary_value() { return (reversed_binary_value<b, d...>() << 1) + a; }
Seems like cookies are disabled on this browser, please enable them to open this website
C++ Variadics
You are viewing a single comment's thread. Return to all comments →