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

◆ log10_impl_float()

float fl::log10_impl_float ( float value)

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

304 {
305#if FL_MATH_USE_LIBM
306 return ::log10f(value);
307#else
308 const float kInvLn10 = 0.43429448190325182765f;
309 return detail::log_natural_<float>(value) * kInvLn10;
310#endif
311}
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(), and log10f().

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