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

◆ operator<<() [13/30]

template<typename T, fl::size Extent>
sstream & fl::sstream::operator<< ( const fl::span< T, Extent > & s)
inline

Definition at line 183 of file strstream.h.

183 {
184 mStr.append("span[");
185 for (fl::size i = 0; i < s.size(); ++i) {
186 if (i > 0) {
187 mStr.append(", ");
188 }
189 (*this) << s[i];
190 }
191 mStr.append("]");
192 return *this;
193 }
constexpr fl::size size() const FL_NOEXCEPT
Definition span.h:458
string mStr
Definition strstream.h:369

References sstream(), FL_NOEXCEPT, and mStr.

+ Here is the call graph for this function: