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

Function fmod

src/fl/math/math.h:338–341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336inline float fmodf(float x, float y) FL_NOEXCEPT { return fmod_impl_float(x, y); }
337template<typename T>
338inline typename enable_if<!is_integral<T>::value, T>::type
339fmod(T x, T y) FL_NOEXCEPT {
340 return static_cast<T>(fmod_impl_float(static_cast<float>(x), static_cast<float>(y)));
341}
342template<>
343inline double fmod<double>(double x, double y) FL_NOEXCEPT {
344 return fmod_impl_double(x, y);

Callers 4

fmod_impl_doubleFunction · 0.85
millisFunction · 0.85
microsFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls 1

fmod_impl_floatFunction · 0.85

Tested by

no test coverage detected