Pow Function

UInt<4> number = 8766543;
UInt<4> pow = 11;
std::cout << number.Pow(pow);

The result is 1;
As I got it means carry, but how to show this carry? It just returns 1.
Thx.

Added by: ~Gaxiss, 2017 XII 07

Never mind. =) I've already understood.