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

◆ operator<<() [15/24]

StrStream & fl::StrStream::operator<< ( const fl::u8 & n)
inline

Definition at line 174 of file strstream.h.

174 {
175 if (mTreatCharAsInt) {
176 mStr.append(fl::u16(n));
177 } else {
178 mStr.append(n);
179 }
180 return *this;
181 }
bool mTreatCharAsInt
Definition strstream.h:250

References StrStream(), mStr, and mTreatCharAsInt.

+ Here is the call graph for this function: