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

Method splice

src/fl/stl/list.h:558–563  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

556 }
557
558 void splice(iterator pos, list& other) {
559 if (other.empty()) {
560 return;
561 }
562 splice(pos, other, other.begin(), other.end());
563 }
564
565 void splice(iterator pos, list& other, iterator it) {
566 iterator next = it;

Callers 4

addEventMethod · 0.80
processBufferAsyncMethod · 0.80
FL_TEST_FILEFunction · 0.80

Calls 3

emptyMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected