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

◆ operator<<() [12/12]

StrStream & fl::StrStream::operator<< ( uint8_t n)
inline

Definition at line 123 of file strstream.h.

123 {
124 if (mTreatCharAsInt) {
125 mStr.append(uint16_t(n));
126 } else {
127 mStr.append(n);
128 }
129 return *this;
130 }
bool mTreatCharAsInt
Definition strstream.h:173

References StrStream(), mStr, and mTreatCharAsInt.

+ Here is the call graph for this function: