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

◆ swap()

void fl::Optional< T >::swap ( Optional< T && > & other)
inline

Definition at line 140 of file optional.h.

140 {
141 if (this != &other) {
142 mValue.swap(other.mValue);
143 }
144 }
fl::variant< T, Empty > mValue
Definition optional.h:147