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

◆ operator<<() [17/30]

template<typename T>
sstream & fl::sstream::operator<< ( const fl::vector< T > & vec)
inline

Definition at line 98 of file strstream.h.

98 {
99 mStr.append("[");
100 for (fl::size i = 0; i < vec.size(); ++i) {
101 if (i > 0) {
102 mStr.append(", ");
103 }
104 (*this) << vec[i];
105 }
106 mStr.append("]");
107 return *this;
108 }
string mStr
Definition strstream.h:369
fl::size size() const FL_NOEXCEPT

References sstream(), FL_NOEXCEPT, and mStr.

+ Here is the call graph for this function: