gramods
Loading...
Searching...
No Matches
modules
gmMisc
include
gmMisc
ConstexprPow.hh
1
2
#ifndef GRAMODS_MISC_CONSTEXPRPOW
3
#define GRAMODS_MISC_CONSTEXPRPOW
4
5
#include <gmMisc/config.hh>
6
7
BEGIN_NAMESPACE_GMMISC;
8
9
template
<
typename
T>
constexpr
T ipow(T num,
unsigned
int
pow) {
10
return
pow == 0 ? 1 : num * ipow(num, pow - 1);
11
}
12
13
END_NAMESPACE_GMMISC;
14
15
#endif
Generated by
1.9.8