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

◆ push_back() [1/2]

template<typename T, typename Allocator = fl::allocator<T>>
void fl::HeapVector< T, Allocator >::push_back ( const T & value)
inline

Definition at line 552 of file vector.h.

552 {
553 ensure_size(mSize + 1);
554 if (mSize < mCapacity) {
555 mAlloc.construct(&mArray[mSize], value);
556 ++mSize;
557 }
558 }
void ensure_size(fl::size n)
Definition vector.h:431

Referenced by fl::FetchManager::cleanup_completed_promises(), CreateXYPaths(), makeCorkScrew(), makeScreenMap(), and fl::JsonValue::parse().

+ Here is the caller graph for this function: