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

◆ pop_back()

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

Definition at line 51 of file circular_buffer.h.

51 {
52 if (empty()) {
53 return false;
54 }
56 if (dst) {
57 *dst = mBuffer[mHead];
58 }
59 return true;
60 }
fl::scoped_array< T > mBuffer
size_t decrement(size_t index) const

References decrement(), empty(), mBuffer, and mHead.

+ Here is the call graph for this function: