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

◆ operator=() [1/2]

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

Definition at line 237 of file list.h.

237 {
238 if (this != &other) {
239 clear();
240 for (const auto& value : other) {
242 }
243 }
244 return *this;
245 }
void clear()
Definition list.h:332
void push_back(const T &value)
Definition list.h:371
A doubly-linked list container.
Definition list.h:21

References list(), clear(), FL_NOEXCEPT, push_back(), and fl::type_rank< T >::value.

+ Here is the call graph for this function: