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

◆ operator>>() [2/10]

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

Definition at line 209 of file istream.h.

209 {
210#if SKETCH_HAS_LARGE_MEMORY
211 mRealStream >> d;
212#else
213 // No-op on memory-constrained platforms
214 d = 0.0;
215#endif
216 return *this;
217 }

References istream().

+ Here is the call graph for this function: