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

◆ resize() [2/2]

template<typename T>
void fl::list< T >::resize ( fl::size count,
const T & value )
inline

Definition at line 419 of file list.h.

419 {
420 while (mSize > count) {
421 pop_back();
422 }
423 while (mSize < count) {
425 }
426 }
void pop_back()
Definition list.h:403
void push_back(const T &value)
Definition list.h:371
fl::size mSize
Definition list.h:33
A doubly-linked list container.
Definition list.h:21

References mSize, pop_back(), push_back(), and fl::type_rank< T >::value.

+ Here is the call graph for this function: