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

◆ operator>>() [6/10]

istream_real & fl::istream_real::operator>> ( fl::u32 & n)

Definition at line 290 of file istream.cpp.

290 {
291 string token;
292 if (readToken(token)) {
293 if (!parse_u32(token.c_str(), n)) {
294 failed_ = true;
295 }
296 } else {
297 failed_ = true;
298 }
299 return *this;
300}
bool readToken(string &token)
Definition istream.cpp:173
bool parse_u32(const char *str, fl::u32 &result)
Definition istream.cpp:81

References istream_real(), fl::StrN< SIZE >::c_str(), failed_, and readToken().

+ Here is the call graph for this function: