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

Method value

src/fl/math/filter/filter.h:427–427  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

425 explicit MovingAverage(fl::size capacity) : mImpl(capacity) {}
426 FASTLED_FORCE_INLINE T update(T input) { return mImpl.update(input); }
427 FASTLED_FORCE_INLINE T value() const { return mImpl.value(); }
428 FASTLED_FORCE_INLINE void reset() { mImpl.reset(); }
429 FASTLED_FORCE_INLINE bool full() const { return mImpl.full(); }
430 FASTLED_FORCE_INLINE fl::size size() const { return mImpl.size(); }

Callers

nothing calls this directly

Calls 1

valueMethod · 0.45

Tested by

no test coverage detected