FastLED 3.9.15
|
Definition at line 37 of file strstream.h.
#include <strstream.h>
Public Member Functions | |
StrStream ()=default | |
StrStream (const Str &str) | |
const char * | c_str () const |
StrStream & | operator<< (char c) |
StrStream & | operator<< (const char *str) |
StrStream & | operator<< (const CRGB &rgb) |
StrStream & | operator<< (const Str &str) |
StrStream & | operator<< (int16_t n) |
StrStream & | operator<< (int32_t n) |
template<typename T> | |
StrStream & | operator<< (T n) |
StrStream & | operator<< (uint16_t n) |
StrStream & | operator<< (uint32_t n) |
StrStream & | operator<< (uint8_t n) |
StrStream & | operator= (char c) |
StrStream & | operator= (const char *str) |
StrStream & | operator= (const CRGB &rgb) |
StrStream & | operator= (const Str &str) |
StrStream & | operator= (uint16_t n) |
StrStream & | operator= (uint8_t n) |
void | setTreatCharAsInt (bool treatCharAsInt) |
const Str & | str () const |
Private Attributes | |
Str | mStr |
bool | mTreatCharAsInt = true |