3#ifndef pRC_CORE_VALUE_FUNCTIONS_LOG10_H
4#define pRC_CORE_VALUE_FUNCTIONS_LOG10_H
14 template<
class T, If<IsFloat<T>> = 0>
15 static inline constexpr auto log10(
T const &a)
17 return Float(std::log10(a()));
20 template<
class T, If<IsInteger<T>> = 0>
21 static inline constexpr auto log10(
T const &a)
Definition cholesky.hpp:18
Float(Float< 16 >::Fundamental const) -> Float< 16 >
static constexpr auto cast(Complex< T > const &a)
Definition cast.hpp:13
static constexpr auto log10(Complex< T > const &a)
Definition log10.hpp:13