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

◆ InlinedVector() [4/5]

template<typename T, fl::size INLINED_SIZE>
fl::InlinedVector< T, INLINED_SIZE >::InlinedVector ( fl::size size)
inline

Definition at line 909 of file vector.h.

909 : mUsingHeap(false) {
910 if (size > INLINED_SIZE) {
911 mHeap.resize(size);
912 mUsingHeap = true;
913 } else {
914 mFixed.resize(size);
915 }
916 }
fl::size size() const
Definition vector.h:1008
HeapVector< T > mHeap
Definition vector.h:1211
FixedVector< T, INLINED_SIZE > mFixed
Definition vector.h:1210

References mFixed, mHeap, mUsingHeap, and size().

+ Here is the call graph for this function: