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

◆ operator[]() [2/2]

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

Definition at line 76 of file circular_buffer.h.

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

References mBuffer, mCapacity, and mTail.