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

◆ operator<<() [2/30]

sstream & fl::sstream::operator<< ( char c)
inline

Definition at line 250 of file strstream.h.

250 {
251 if (mTreatCharAsInt) {
252 mStr.append(fl::i32(c));
253 } else {
254 mStr.append(c);
255 }
256 return *this;
257 }
string mStr
Definition strstream.h:369
bool mTreatCharAsInt
Definition strstream.h:370

References sstream(), FL_NOEXCEPT, mStr, and mTreatCharAsInt.

+ Here is the call graph for this function: