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

◆ swap()

void fl::string::swap ( string & other)

Definition at line 300 of file string.cpp.hpp.

300 {
301 if (this == &other) return;
302 string tmp(fl::move(*this));
303 *this = fl::move(other);
304 other = fl::move(tmp);
305}
constexpr remove_reference< T >::type && move(T &&t) FL_NOEXCEPT
Definition s16x16x4.h:28

References fl::fl::move().

+ Here is the call graph for this function: