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

◆ swap()

void fl::string_view::swap ( string_view & other)
inline

Definition at line 116 of file string_view.h.

116 {
117 const char* tmp_data = mData;
118 fl::size tmp_size = mSize;
119 mData = other.mData;
120 mSize = other.mSize;
121 other.mData = tmp_data;
122 other.mSize = tmp_size;
123 }
const char * mData

References string_view(), FL_NOEXCEPT, mData, and mSize.

+ Here is the call graph for this function: