I have the following very simple template. As I learned, ^
is not the exponential operator. Now I'm looking for a way to compute this power. There are many examples with a recursive template on the internet. This is not too difficult.
But I wonder: Is there actually no "built-in" method in C++ to compute this on compile time?
template <int DIM>
class BinIdx : Idx
{
static const int SIZE = 3 ^ DIM; // whoops, this is NOT an exponential operator!
}
You can use template metaprogramming. Let me show the code.
Usage:
(live example)