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

Function assign

src/fl/stl/vector.h:232–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230 }
231
232 void assign(const_iterator begin, const_iterator end) FL_NOEXCEPT {
233 clear();
234 for (const_iterator it = begin; it != end; ++it) {
235 push_back(*it);
236 }
237 }
238
239 // Remove the last element from the vector
240 void pop_back() FL_NOEXCEPT {

Callers 2

string_nMethod · 0.85
stringClass · 0.85

Calls 2

push_backFunction · 0.85
clearFunction · 0.70

Tested by

no test coverage detected