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

◆ operator>>() [8/10]

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

Definition at line 204 of file istream.h.

204 {
205#if SKETCH_HAS_LOTS_OF_MEMORY
206 real_stream_ >> f;
207#else
208 // No-op on memory-constrained platforms
209 f = 0.0f;
210#endif
211 return *this;
212 }

References istream().

+ Here is the call graph for this function: