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 53 of file circular_buffer.h.

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

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

+ Here is the call graph for this function: