3#ifndef pRC_CORE_VALUE_FUNCTIONS_POW_H
4#define pRC_CORE_VALUE_FUNCTIONS_POW_H
14 template<IsFloat B, IsFloat N>
15 static inline constexpr auto pow(B
const &base, N
const &
exp)
17 return Float(std::pow(base(),
exp()));
20 template<IsInteger B, IsFloat N>
21 static inline constexpr auto pow(B
const &base, N
const &
exp)
26 template<IsFloat B, IsInteger N>
27 static inline constexpr auto pow(B
const &base, N
const &
exp)
32 template<IsInteger B, IsInteger N>
33 static inline constexpr auto pow(B
const &base, N
const &
exp)
Definition cholesky.hpp:10
Float(Float< 16 >::Fundamental const) -> Float< 16 >
static constexpr auto cast(T const &a)
Definition cast.hpp:11
static constexpr auto pow(X const &x, Y const &y)
Definition pow.hpp:11
static constexpr auto exp(T const &a)
Definition exp.hpp:11