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

◆ append() [16/39]

template<typename T>
string & fl::string::append ( const fl::span< T > & slice)
inline

Definition at line 300 of file string.h.

300 {
301 append("[");
302 for (fl::size i = 0; i < slice.size(); ++i) {
303 if (i > 0) append(", ");
304 append(slice[i]);
305 }
306 append("]");
307 return *this;
308 }
constexpr fl::size size() const FL_NOEXCEPT
Definition span.h:458
string & append(const bitset_fixed< N > &bs) FL_NOEXCEPT
Definition string.h:284

References append(), and FL_NOEXCEPT.

+ Here is the call graph for this function: