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

30 : _tag(Empty) {
31 if (!other.empty()) {
33 }
34 }
static constexpr Tag Empty
Definition variant.h:12
bool empty() const noexcept
Definition variant.h:100
void copy_construct_from(const Variant &other)
Definition variant.h:196