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

◆ operator[]() [2/2]

template<typename T, size_t INLINED_SIZE>
const T & fl::InlinedVector< T, INLINED_SIZE >::operator[] ( size_t idx) const
inline

Definition at line 912 of file vector.h.

912 {
913 return mUsingHeap ? mHeap[idx] : mFixed[idx];
914 }
HeapVector< T > mHeap
Definition vector.h:1025
FixedVector< T, INLINED_SIZE > mFixed
Definition vector.h:1024

References mFixed, mHeap, and mUsingHeap.