FastLED 3.9.15
Loading...
Searching...
No Matches

◆ fill()

template<typename Iterator, typename T>
void fl::fill ( Iterator first,
Iterator last,
const T & value )

Definition at line 162 of file algorithm.h.

162 {
163 while (first != last) {
164 *first = value;
165 ++first;
166 }
167}