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

◆ operator=() [2/2]

template<typename T, typename Deleter = ArrayDeleter<T>>
scoped_array & fl::scoped_array< T, Deleter >::operator= ( scoped_array< T, Deleter > && other)
inlinenoexcept

Definition at line 122 of file scoped_ptr.h.

122 {
123 if (this != &other) {
125 other.arr_ = nullptr;
126 }
127 return *this;
128 }
void reset(T *arr=nullptr)
Definition scoped_ptr.h:143

References scoped_array(), and reset().

+ Here is the call graph for this function: