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

◆ Variant() [4/5]

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

Definition at line 32 of file variant.h.

32 : _tag(Empty) {
33 if (!other.empty()) {
35 }
36 }
static constexpr Tag Empty
Definition variant.h:14
bool empty() const noexcept
Definition variant.h:104
void copy_construct_from(const Variant &other)
Definition variant.h:229