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

◆ push_back()

template<typename T, size_t N>
void fl::FixedVector< T, N >::push_back ( const T & value)
inline

Definition at line 77 of file vector.h.

77 {
78 if (current_size < N) {
79 void* mem = &mData[current_size];
80 new (mem) T(value);
82 }
83 }
size_t current_size
Definition vector.h:25

Referenced by fl::FixedVector< PairKV, N >::assign(), and fl::FixedVector< PairKV, N >::assign().

+ Here is the caller graph for this function: