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

◆ operator>>() [8/10]

istream & fl::istream::operator>> ( float & f)
inline

Definition at line 199 of file istream.h.

199 {
200#if SKETCH_HAS_LARGE_MEMORY
201 mRealStream >> f;
202#else
203 // No-op on memory-constrained platforms
204 f = 0.0f;
205#endif
206 return *this;
207 }

References istream().

+ Here is the call graph for this function: