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

◆ operator=() [2/2]

ScreenMap & fl::ScreenMap::operator= ( ScreenMap && other)

Definition at line 428 of file screenmap.cpp.

428 {
429 if (this != &other) {
430 mDiameter = other.mDiameter;
431 length = other.length;
432 mLookUpTable = fl::move(other.mLookUpTable);
433 other.length = 0;
434 other.mDiameter = -1.0f;
435 }
436 return *this;
437}
float mDiameter
Definition screenmap.h:102
LUTXYFLOATPtr mLookUpTable
Definition screenmap.h:103
constexpr remove_reference< T >::type && move(T &&t) noexcept
Definition move.h:27

References ScreenMap(), length, mDiameter, mLookUpTable, and fl::move().

+ Here is the call graph for this function: