Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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_FILE
Function · 0.45
FL_TEST_FILE
Function · 0.45
FL_TEST_FILE
Function · 0.45
test_push_front
Function · 0.45
test_pop_front
Function · 0.45
Calls
2
insert
Function · 0.70
begin
Function · 0.70
Tested by
2
test_push_front
Function · 0.36
test_pop_front
Function · 0.36