FastLED 3.9.15
Loading...
Searching...
No Matches

◆ append() [22/37]

string & fl::string::append ( const Json & val)

Definition at line 413 of file str.cpp.

413 {
414 // Use the Json's to_string method if available
415 // For now, just append a placeholder to avoid compilation errors
416 //append("<Json>");
417 append("Json(");
418 append(val.to_string());
419 append(")");
420 return *this;
421}
string & append(const BitsetFixed< N > &bs)
Definition str.h:675

References append(), and fl::Json::to_string().

+ Here is the call graph for this function: