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

◆ operator=() [2/2]

template<typename T>
list & fl::list< T >::operator= ( list< T > && other)
inline

Definition at line 247 of file list.h.

247 {
248 if (this != &other) {
249 clear();
250 swap(other);
251 }
252 return *this;
253 }
void swap(list &other)
Definition list.h:428
void clear()
Definition list.h:332
A doubly-linked list container.
Definition list.h:21

References list(), clear(), FL_NOEXCEPT, and swap().

+ Here is the call graph for this function: