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

◆ operator[]() [2/2]

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

Definition at line 1054 of file vector.h.

1054 {
1055 return mUsingHeap ? mHeap[idx] : mFixed[idx];
1056 }
HeapVector< T > mHeap
Definition vector.h:1211
FixedVector< T, INLINED_SIZE > mFixed
Definition vector.h:1210

References mFixed, mHeap, and mUsingHeap.