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

Function fill

src/fl/stl/algorithm.h:204–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202
203template <typename Iterator, typename T>
204void fill(Iterator first, Iterator last, const T& value) FL_NOEXCEPT {
205 while (first != last) {
206 *first = value;
207 ++first;
208 }
209}
210
211template <typename Iterator, typename T>
212Iterator find(Iterator first, Iterator last, const T& value) FL_NOEXCEPT {

Callers 7

writeWithPaddingMethod · 0.85
resetMethod · 0.85
resetMethod · 0.85
resetMethod · 0.85
ucs7604PaddingGeneratorFunction · 0.85
FL_TEST_FILEFunction · 0.85
FL_TEST_FILEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected