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

◆ append() [16/24]

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

Definition at line 445 of file str.h.

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

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

+ Here is the call graph for this function: