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

◆ pop()

template<typename T, fl::size N>
bool fl::StaticCircularBuffer< T, N >::pop ( T & value)
inline

Definition at line 27 of file circular_buffer.h.

27 {
28 if (empty()) {
29 return false;
30 }
32 mTail = (mTail + 1) % (N + 1);
33 return true;
34 }

References empty(), mBuffer, and mTail.

+ Here is the call graph for this function: