3#ifndef pRC_CORE_BASIC_FUNCTIONS_IPOW_H
4#define pRC_CORE_BASIC_FUNCTIONS_IPOW_H
10 template<IsIntegral B, IsUn
signedIntegral N>
11 static inline constexpr B
iPow(B
const base, N
const exp)
13 return exp == N(0) ? B(1) : base *
iPow(base,
exp - N(1));
Definition cholesky.hpp:10
static constexpr auto exp(T const &a)
Definition exp.hpp:11
static constexpr B iPow(B const base, N const exp)
Definition ipow.hpp:11