FastLED
3.9.15
Loading...
Searching...
No Matches
◆
equal_range()
[2/2]
template<typename
Key
, typename T, typename
Hash
= Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
pair
<
const_iterator
,
const_iterator
>
fl::unordered_map
<
Key
, T,
Hash
, KeyEqual, INLINED_COUNT >::equal_range
(
const
Key
&
key
)
const
inline
Definition at line
671
of file
unordered_map.h
.
671
{
672
const_iterator
it
=
find
(
key
);
673
if
(
it
==
end
()) {
674
return
{
end
(),
end
()};
675
}
676
const_iterator
next
=
it
;
677
++
next
;
678
return
{
it
,
next
};
679
}
fl::unordered_map::find
iterator find(const Key &key)
Definition
unordered_map.h:627
fl::unordered_map::end
iterator end()
Definition
unordered_map.h:300
fl::unordered_map
Definition
unordered_map.h:58
fl::unordered_map::const_iterator
Definition
unordered_map.h:242
fl
unordered_map
Generated on Tue Jun 16 2026 00:07:07 for FastLED by
1.13.2