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

Method update

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

Source from the content-addressed store, hash-verified

561 GaussianFilter() FL_NOEXCEPT = default;
562 explicit GaussianFilter(fl::size capacity) : mImpl(capacity) {}
563 FASTLED_FORCE_INLINE T update(T input) { return mImpl.update(input); }
564 FASTLED_FORCE_INLINE T update(fl::span<const T> values) { return mImpl.update(values); }
565 FASTLED_FORCE_INLINE T value() const { return mImpl.value(); }
566 FASTLED_FORCE_INLINE void reset() { mImpl.reset(); }

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected