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

◆ operator>>() [2/10]

istream & fl::istream::operator>> ( double & d)
inline

Definition at line 214 of file istream.h.

214 {
215#if SKETCH_HAS_LOTS_OF_MEMORY
216 real_stream_ >> d;
217#else
218 // No-op on memory-constrained platforms
219 d = 0.0;
220#endif
221 return *this;
222 }

References istream().

+ Here is the call graph for this function: