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

◆ operator>>() [4/10]

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

Definition at line 278 of file istream.cpp.hpp.

278 {
279 string token;
280 if (readToken(token)) {
281 if (!parse_i32(token.c_str(), n)) {
282 mFailed = true;
283 }
284 } else {
285 mFailed = true;
286 }
287 return *this;
288}
bool readToken(string &token)
bool parse_i32(const char *str, fl::i32 &result)

References istream_real(), fl::basic_string::c_str(), mFailed, and readToken().

+ Here is the call graph for this function: