Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ log_impl_double
Function
log_impl_double
src/fl/math/math.cpp.hpp:296–302 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
294
}
295
296
double log_impl_double(double value) {
297
#if FL_MATH_USE_LIBM
298
return ::log(value);
299
#else
300
return detail::log_natural_<double>(value);
301
#endif
302
}
303
304
float log10_impl_float(float value) {
305
#if FL_MATH_USE_LIBM
Callers
2
log
Function · 0.85
log2
Function · 0.85
Calls
1
log
Function · 0.70
Tested by
no test coverage detected