| 527 | TriangularFilter() FL_NOEXCEPT = default; |
| 528 | explicit TriangularFilter(fl::size capacity) : mImpl(capacity) {} |
| 529 | FASTLED_FORCE_INLINE T update(T input) { return mImpl.update(input); } |
| 530 | FASTLED_FORCE_INLINE T update(fl::span<const T> values) { return mImpl.update(values); } |
| 531 | FASTLED_FORCE_INLINE T value() const { return mImpl.value(); } |
| 532 | FASTLED_FORCE_INLINE void reset() { mImpl.reset(); } |