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

◆ operator=() [1/2]

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

Definition at line 73 of file bitset_dynamic.h.

73 {
74 if (this != &other) {
75 delete[] _blocks;
76 _blocks = other._blocks;
77 _block_count = other._block_count;
78 _size = other._size;
79 other._blocks = nullptr;
80 other._block_count = 0;
81 other._size = 0;
82 }
83 return *this;
84 }
block_type * _blocks

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

+ Here is the call graph for this function: