FastLED 3.9.15
Loading...
Searching...
No Matches

◆ log10_impl_double()

double fl::log10_impl_double ( double value)

Definition at line 313 of file math.cpp.hpp.

313 {
314#if FL_MATH_USE_LIBM
315 return ::log10(value);
316#else
317 const double kInvLn10 = 0.43429448190325182765;
318 return detail::log_natural_<double>(value) * kInvLn10;
319#endif
320}
F log_natural_(F value) FL_NOEXCEPT
Definition math.cpp.hpp:214
constexpr int type_rank< T >::value

References fl::detail::log_natural_(), and type_rank< T >::value.

Referenced by log10().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: