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 48 of file variant.h.

48 {
49 if (this != &other) {
50 reset();
51 if (!other.empty()) {
53 }
54 }
55 return *this;
56 }
void reset() noexcept
Definition variant.h:96
bool empty() const noexcept
Definition variant.h:104
void copy_construct_from(const Variant &other)
Definition variant.h:229