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

◆ operator=() [2/2]

FFTBins & fl::FFTBins::operator= ( FFTBins && other)
inlinenoexcept

Definition at line 36 of file fft.h.

36 {
37 if (this != &other) {
38 bins_raw = fl::move(other.bins_raw);
39 bins_db = fl::move(other.bins_db);
40 mSize = other.mSize;
41 }
42 return *this;
43 }
constexpr remove_reference< T >::type && move(T &&t) noexcept
Definition move.h:27
fl::size mSize
Definition fft.h:58
fl::vector< float > bins_raw
Definition fft.h:53
fl::vector< float > bins_db
Definition fft.h:55

References FFTBins(), bins_db, bins_raw, fl::move(), and mSize.

+ Here is the call graph for this function: