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

◆ append() [16/23]

template<typename T>
Str & fl::Str::append ( const Slice< T > & slice)
inline

Definition at line 444 of file str.h.

444 {
445 append("[");
446 for (size_t i = 0; i < slice.size(); ++i) {
447 if (i > 0) {
448 append(", ");
449 }
450 append(slice[i]);
451 }
452 append("]");
453 return *this;
454 }
Str & append(const T &val)
Definition str.h:439

References Str(), append(), and fl::Slice< T >::size().

+ Here is the call graph for this function: