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

38 : _tag(Empty) {
39 if (!other.empty()) {
41 // After moving, mark other as empty to prevent destructor calls on moved-from objects
43 }
44 }
static constexpr Tag Empty
Definition variant.h:14
bool empty() const noexcept
Definition variant.h:104
void move_construct_from(Variant &other) noexcept
Definition variant.h:245