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

◆ InlinedVector() [4/4]

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

Definition at line 782 of file vector.h.

782 : mUsingHeap(false) {
783 if (size > INLINED_SIZE) {
784 mHeap.resize(size);
785 mUsingHeap = true;
786 } else {
787 mFixed.resize(size);
788 }
789 }
HeapVector< T > mHeap
Definition vector.h:1025
FixedVector< T, INLINED_SIZE > mFixed
Definition vector.h:1024
size_t size() const
Definition vector.h:866

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

+ Here is the call graph for this function: