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

◆ operator=() [1/2]

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

Definition at line 72 of file bitset_dynamic.h.

72 {
73 if (this != &other) {
74 _blocks = fl::move(other._blocks);
75 _block_count = other._block_count;
76 _size = other._size;
77 other._block_count = 0;
78 other._size = 0;
79 }
80 return *this;
81 }
fl::unique_ptr< block_type[]> _blocks
constexpr remove_reference< T >::type && move(T &&t) FL_NOEXCEPT
Definition s16x16x4.h:28

References bitset_dynamic(), _block_count, _blocks, _size, FL_NOEXCEPT, and fl::fl::move().

+ Here is the call graph for this function: