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

Method push_front

src/fl/stl/list.h:379–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

377 }
378
379 void push_front(const T& value) {
380 insert(begin(), value);
381 }
382
383 void push_front(T&& value) {
384 insert(begin(), fl::move(value));

Callers 5

FL_TEST_FILEFunction · 0.45
FL_TEST_FILEFunction · 0.45
FL_TEST_FILEFunction · 0.45
test_push_frontFunction · 0.45
test_pop_frontFunction · 0.45

Calls 2

insertFunction · 0.70
beginFunction · 0.70

Tested by 2

test_push_frontFunction · 0.36
test_pop_frontFunction · 0.36