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

◆ push_back() [1/2]

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

Definition at line 298 of file deque.h.

298 {
301 mAlloc.construct(&mData[back_index], value);
302 ++mSize;
303 }
void ensure_capacity(fl::size min_capacity)
Definition deque.h:27
T * mData
Definition deque.h:19
fl::size get_index(fl::size logical_index) const
Definition deque.h:58
fl::size mSize
Definition deque.h:21
Allocator mAlloc
Definition deque.h:23

Referenced by fl::deque< int >::deque(), fl::deque< int >::operator=(), fl::deque< int >::resize(), and fl::Json::to_string_native().

+ Here is the caller graph for this function: