FastLED
3.9.15
Loading...
Searching...
No Matches
◆
HashMap()
[3/3]
template<typename
Key
, typename T, typename
Hash
= Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
fl::HashMap
<
Key
, T,
Hash
, KeyEqual, INLINED_COUNT >::HashMap
(
fl::size
initial_capacity
,
float
max_load
)
inline
Definition at line
65
of file
hash_map.h
.
66
:
_buckets
(
next_power_of_two
(
initial_capacity
)),
_size
(0),
67
_tombstones
(0),
_occupied
(
next_power_of_two
(
initial_capacity
)),
68
_deleted
(
next_power_of_two
(
initial_capacity
)) {
69
setLoadFactor
(
max_load
);
70
}
fl::HashMap::_size
fl::size _size
Definition
hash_map.h:702
fl::HashMap::next_power_of_two
static fl::size next_power_of_two(fl::size n)
Definition
hash_map.h:445
fl::HashMap::_deleted
fl::bitset< 1024 > _deleted
Definition
hash_map.h:706
fl::HashMap::_occupied
fl::bitset< 1024 > _occupied
Definition
hash_map.h:705
fl::HashMap::_tombstones
fl::size _tombstones
Definition
hash_map.h:703
fl::HashMap::setLoadFactor
void setLoadFactor(float f)
Definition
hash_map.h:72
fl::HashMap::_buckets
FL_DISABLE_WARNING_POP fl::vector_inlined< Entry, INLINED_COUNT > _buckets
Definition
hash_map.h:701
fl::HashMap
Definition
hash_map.h:60
fl
HashMap
Generated on Fri Aug 22 2025 20:59:36 for FastLED by
1.13.2