FastLED 3.9.15
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages

◆ operator=() [1/2]

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

Definition at line 64 of file bitset_dynamic.h.

64 {
65 if (this != &other) {
66 delete[] _blocks;
67 _blocks = other._blocks;
68 _block_count = other._block_count;
69 _size = other._size;
70 other._blocks = nullptr;
71 other._block_count = 0;
72 other._size = 0;
73 }
74 return *this;
75 }
block_type * _blocks

References bitset_dynamic(), _block_count, _blocks, and _size.

+ Here is the call graph for this function: