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

◆ back() [1/2]

template<typename T>
T & fl::CircularBuffer< T >::back ( )
inline

Definition at line 70 of file circular_buffer.h.

70 {
71 return mBuffer[(mHead + mCapacity - 1) % mCapacity];
72 }
fl::scoped_array< T > mBuffer

References mBuffer, mCapacity, and mHead.