| 461 | FASTLED_FORCE_INLINE T update(T input) { return mImpl.update(input); } |
| 462 | FASTLED_FORCE_INLINE T update(fl::span<const T> values) { return mImpl.update(values); } |
| 463 | FASTLED_FORCE_INLINE T value() const { return mImpl.value(); } |
| 464 | FASTLED_FORCE_INLINE void reset() { mImpl.reset(); } |
| 465 | FASTLED_FORCE_INLINE fl::size size() const { return mImpl.size(); } |
| 466 | FASTLED_FORCE_INLINE fl::size capacity() const { return mImpl.capacity(); } |