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

◆ erase()

FramePtr fl::FrameInterpolator::erase ( uint32_t frameNum)
inline

Definition at line 47 of file frame_interpolator.h.

47 {
48 FramePtr out;
49 auto it = mFrames.find(frameNum);
50 if (it == mFrames.end()) {
51 return out;
52 }
53 out = it->second;
54 mFrames.erase(it);
55 return out;
56 }

References mFrames.