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

◆ assign() [2/2]

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

Definition at line 472 of file vector.h.

472 {
473 clear();
475 while (size() < new_cap) {
477 }
478 }
void push_back(const T &value)
Definition vector.h:493