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

◆ Variant() [5/5]

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

Definition at line 36 of file variant.h.

36 : _tag(Empty) {
37 if (!other.empty()) {
39 other.reset();
40 }
41 }
static constexpr Tag Empty
Definition variant.h:12
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