Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ append
Method
append
src/fl/stl/json.cpp.hpp:1131–1133 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1129
fl::deque<char>& out;
1130
1131
void append(const char* str) {
1132
while (*str) { out.push_back(*str++); }
1133
}
1134
1135
void append_str(const fl::string& str) {
1136
for (size_t i = 0; i < str.size(); ++i) {
Callers
1
accept
Method · 0.45
Calls
1
push_back
Method · 0.45
Tested by
no test coverage detected