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

◆ operator=() [4/4]

template<typename... Types>
Variant & fl::Variant< Types >::operator= ( Variant< Types > && other)
inlinenoexcept

Definition at line 55 of file variant.h.

55 {
56 if (this != &other) {
57 reset();
58 if (!other.empty()) {
60 other.reset();
61 }
62 }
63 return *this;
64 }
void reset() noexcept
Definition variant.h:92
bool empty() const noexcept
Definition variant.h:100
void move_construct_from(Variant &other) noexcept
Definition variant.h:209