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

◆ swap()

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

Definition at line 82 of file scoped_array.h.

82 {
83 T *tmp = arr_;
84 arr_ = other.arr_;
85 other.arr_ = tmp;
86 }

References scoped_array(), and arr_.

+ Here is the call graph for this function: