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

◆ operator>>() [1/10]

istream & fl::istream::operator>> ( char & c)
inline

Definition at line 139 of file istream.h.

139 {
140#if SKETCH_HAS_LARGE_MEMORY
141 mRealStream >> c;
142#else
143 // No-op on memory-constrained platforms
144 c = '\0';
145#endif
146 return *this;
147 }

References istream().

+ Here is the call graph for this function: