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

◆ pop_back()

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

Definition at line 89 of file circular_buffer.h.

89 {
90 if (empty()) {
91 return false;
92 }
94 if (dst) {
95 *dst = mBuffer[mHead];
96 }
97 return true;
98 }
fl::size decrement(fl::size index) const
fl::scoped_array< T > mBuffer

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

+ Here is the call graph for this function: