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

◆ operator=() [3/3]

template<typename Key, typename T, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
unordered_map & fl::unordered_map< Key, T, Hash, KeyEqual, INLINED_COUNT >::operator= ( unordered_map< Key, T, Hash, KeyEqual, INLINED_COUNT > && other)
inline

Definition at line 156 of file unordered_map.h.

156 {
157 if (this != &other) {
159 _size = other._size;
166
167 // Reset other to valid empty state
168 other._size = 0;
169 other._tombstones = 0;
170 }
171 return *this;
172 }
fl::bitset< 1024 > _occupied
fl::vector_inlined< Entry, INLINED_COUNT > _buckets
fl::bitset< 1024 > _deleted
constexpr remove_reference< T >::type && move(T &&t) FL_NOEXCEPT
Definition s16x16x4.h:28