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

◆ append() [25/39]

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

Definition at line 349 of file string.cpp.hpp.

349 {
350 // Use the json's to_string method if available
351 // For now, just append a placeholder to avoid compilation errors
352 //append("<json>");
353 append("json(");
354 append(val.to_string());
355 append(")");
356 return *this;
357}
string & append(const bitset_fixed< N > &bs) FL_NOEXCEPT
Definition string.h:284

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

+ Here is the call graph for this function: