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
) {
158
_buckets
=
fl::move
(
other
.
_buckets
);
159
_size
=
other
.
_size
;
160
_tombstones
=
other
.
_tombstones
;
161
mLoadFactor
=
other
.
mLoadFactor
;
162
_occupied
=
fl::move
(
other
.
_occupied
);
163
_deleted
=
fl::move
(
other
.
_deleted
);
164
_hash
=
fl::move
(
other
.
_hash
);
165
_equal
=
fl::move
(
other
.
_equal
);
166
167
// Reset other to valid empty state
168
other
.
_size
= 0;
169
other
.
_tombstones
= 0;
170
}
171
return
*
this
;
172
}
fl::unordered_map::_hash
Hash _hash
Definition
unordered_map.h:1123
fl::unordered_map::_occupied
fl::bitset< 1024 > _occupied
Definition
unordered_map.h:1121
fl::unordered_map::mLoadFactor
u8 mLoadFactor
Definition
unordered_map.h:1120
fl::unordered_map::_equal
KeyEqual _equal
Definition
unordered_map.h:1124
fl::unordered_map::_buckets
fl::vector_inlined< Entry, INLINED_COUNT > _buckets
Definition
unordered_map.h:1117
fl::unordered_map::_size
fl::size _size
Definition
unordered_map.h:1118
fl::unordered_map::_tombstones
fl::size _tombstones
Definition
unordered_map.h:1119
fl::unordered_map::_deleted
fl::bitset< 1024 > _deleted
Definition
unordered_map.h:1122
fl::unordered_map
Definition
unordered_map.h:58
fl::fl::move
constexpr remove_reference< T >::type && move(T &&t) FL_NOEXCEPT
Definition
s16x16x4.h:28
fl
unordered_map
Generated on Tue Jun 16 2026 00:07:07 for FastLED by
1.13.2