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

◆ operator=() [2/2]

template<typename T, fl::size N>
FixedVector & fl::FixedVector< T, N >::operator= ( FixedVector< T, N > && other)
inline

Definition at line 150 of file vector.h.

150 { // cppcheck-suppress operatorEqVarError
151 if (this != &other) {
152 fl::swap(*this, other);
153 other.clear();
154 }
155 return *this;
156 }
void clear() FL_NOEXCEPT
Definition vector.h:248
void swap(T &a, T &b) FL_NOEXCEPT
Definition s16x16x4.h:877