FastLED 3.9.15
|
Definition at line 42 of file strstream.h.
#include <strstream.h>
Public Member Functions | |
StrStream ()=default | |
StrStream (const string &str) | |
const char * | c_str () const |
void | clear () |
StrStream & | operator<< (bool b) |
StrStream & | operator<< (const bitset_dynamic &bs) |
template<fl::u32 N> | |
StrStream & | operator<< (const BitsetFixed< N > &bs) |
template<fl::u32 N> | |
StrStream & | operator<< (const BitsetInlined< N > &bs) |
StrStream & | operator<< (const char &c) |
StrStream & | operator<< (const char *str) |
template<fl::size N> | |
StrStream & | operator<< (const char(&str)[N]) |
StrStream & | operator<< (const CRGB &rgb) |
StrStream & | operator<< (const double &f) |
StrStream & | operator<< (const FFTBins &bins) |
StrStream & | operator<< (const fl::i16 &n) |
StrStream & | operator<< (const fl::i32 &n) |
StrStream & | operator<< (const fl::u32 &n) |
StrStream & | operator<< (const fl::u64 &n) |
StrStream & | operator<< (const fl::u8 &n) |
StrStream & | operator<< (const float &f) |
template<typename T, typename Alloc> | |
StrStream & | operator<< (const HeapVector< T, Alloc > &vec) |
StrStream & | operator<< (const long long &n) |
StrStream & | operator<< (const string &str) |
StrStream & | operator<< (const StrStream &strStream) |
StrStream & | operator<< (const Tile2x2_u8 &subpixel) |
StrStream & | operator<< (const Tile2x2_u8_wrap &tile) |
template<typename T> | |
StrStream & | operator<< (const vec2< T > &v) |
template<typename T> | |
fl::enable_if< fl::is_same< T, fl::size >::value||fl::is_same< T, fl::u16 >::value||fl::is_same< T, int >::value, StrStream & >::type | operator<< (T n) |
StrStream & | operator= (char c) |
StrStream & | operator= (const char *str) |
StrStream & | operator= (const CRGB &rgb) |
StrStream & | operator= (const fl::u16 &n) |
StrStream & | operator= (const fl::u8 &n) |
StrStream & | operator= (const string &str) |
void | setTreatCharAsInt (bool treatCharAsInt) |
const string & | str () const |
Private Attributes | |
string | mStr |
bool | mTreatCharAsInt = false |