Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ log_impl_float
Function
log_impl_float
src/fl/math/math.cpp.hpp:288–294 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
286
}
287
288
float log_impl_float(float value) {
289
#if FL_MATH_USE_LIBM
290
return ::logf(value);
291
#else
292
return detail::log_natural_<float>(value);
293
#endif
294
}
295
296
double log_impl_double(double value) {
297
#if FL_MATH_USE_LIBM
Callers
4
logf
Function · 0.85
log
Function · 0.85
log2f
Function · 0.85
log2
Function · 0.85
Calls
1
logf
Function · 0.85
Tested by
no test coverage detected