You are viewing a single comment's thread. Return to all comments →
clean I think
template<bool F, bool ...I> int reversed_binary_value() { return F + 2 * reversed_binary_value<I...>(); } template<> int reversed_binary_value<0>() { return 0; } template<> int reversed_binary_value<1>() { return 1; }
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 →
clean I think