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

◆ operator<<() [13/14]

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

Definition at line 125 of file strstream.h.

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

References StrStream(), mStr, and mTreatCharAsInt.

+ Here is the call graph for this function: