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 164 of file algorithm.h.

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