3#ifndef pRC_CORE_VALUE_FUNCTIONS_LOG10_H
4#define pRC_CORE_VALUE_FUNCTIONS_LOG10_H
21 template<
class T, If<IsFloat<T>> = 0>
22 static inline constexpr auto log10(
T const &a)
24 return Float(std::log10(a()));
34 template<
class T, If<IsInteger<T>> = 0>
35 static inline constexpr auto log10(
T const &a)
Top-level class storing a floating point number.
Definition float.hpp:35
Definition cholesky.hpp:18
static constexpr Conditional< IsSatisfied< C >, RemoveConstReference< X >, X > copy(X &&a)
Definition copy.hpp:13
static constexpr auto cast(Complex< T > const &a)
Definition cast.hpp:13
static constexpr auto log10(Complex< T > const &a)
Definition log10.hpp:13