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

◆ operator[]() [2/2]

template<typename T>
const T & fl::CircularBuffer< T >::operator[] ( size_t index) const
inline

Definition at line 74 of file circular_buffer.h.

74 {
75 return mBuffer[(mTail + index) % mCapacity];
76 }
fl::scoped_array< T > mBuffer

References mBuffer, mCapacity, and mTail.