|
FastLED 3.9.15
|
#include <istream.h>
Public Member Functions | |
| istream_real ()=default | |
| void | clear () |
| bool | eof () const |
| bool | fail () const |
| int | get () |
| istream_real & | getline (string &str) |
| bool | good () const |
| istream_real & | operator>> (char &c) |
| istream_real & | operator>> (double &d) |
| istream_real & | operator>> (fl::i16 &n) |
| istream_real & | operator>> (fl::i32 &n) |
| istream_real & | operator>> (fl::i8 &n) |
| istream_real & | operator>> (fl::u32 &n) |
| istream_real & | operator>> (fl::u8 &n) |
| istream_real & | operator>> (float &f) |
| istream_real & | operator>> (string &str) |
| template<typename T> | |
| fl::enable_if< fl::is_same< T, fl::size >::value||fl::is_same< T, fl::u16 >::value, istream_real & >::type | operator>> (T &n) |
| int | peek () |
| istream_real & | putback (char c) |
Private Member Functions | |
| bool | readLine () |
| bool | readToken (string &token) |
| void | skipWhitespace () |
Private Attributes | |
| char | buffer_ [BUFFER_SIZE] |
| fl::size | buffer_len_ = 0 |
| bool | failed_ = false |
| fl::size | pos_ = 0 |
Static Private Attributes | |
| static const fl::size | BUFFER_SIZE = 256 |