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

◆ pop_front()

template<typename T>
bool fl::CircularBuffer< T >::pop_front ( T * dst = nullptr)
inline

Definition at line 31 of file circular_buffer.h.

31 {
32 if (empty()) {
33 return false;
34 }
35 if (dst) {
36 *dst = mBuffer[mTail];
37 }
39 return true;
40 }
fl::scoped_array< T > mBuffer
size_t increment(size_t index) const

References empty(), increment(), mBuffer, and mTail.

+ Here is the call graph for this function: