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

◆ operator=() [2/4]

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

Definition at line 45 of file variant.h.

45 {
46 if (this != &other) {
47 reset();
48 if (!other.empty()) {
50 }
51 }
52 return *this;
53 }
void reset() noexcept
Definition variant.h:92
bool empty() const noexcept
Definition variant.h:100
void copy_construct_from(const Variant &other)
Definition variant.h:196