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

◆ pop_front()

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

Definition at line 69 of file circular_buffer.h.

69 {
70 if (empty()) {
71 return false;
72 }
73 if (dst) {
74 *dst = mBuffer[mTail];
75 }
77 return true;
78 }
fl::size increment(fl::size index) const
fl::scoped_array< T > mBuffer

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

+ Here is the call graph for this function: