MCPcopy Create free account
hub / github.com/FastLED/FastLED / sqrt_impl_double

Function sqrt_impl_double

src/fl/math/math.cpp.hpp:248–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246}
247
248double sqrt_impl_double(double value) {
249#if FL_MATH_USE_LIBM
250 return ::sqrt(value);
251#else
252 return detail::sqrt_newton_<double>(value);
253#endif
254}
255
256float sin_impl_float(float value) {
257#if FL_MATH_USE_LIBM

Callers 1

sqrtFunction · 0.85

Calls 1

sqrtFunction · 0.85

Tested by

no test coverage detected