FastLED
3.9.15
Loading...
Searching...
No Matches
◆
highest()
[1/2]
template<typename
Key
, typename Value, size_t N>
template<typename Less>
iterator
fl::FixedMap
<
Key
, Value, N >::highest
(
Less
less_than
=
Less()
)
inline
Definition at line
95
of file
map.h
.
95
{
96
iterator
highest
=
end
();
97
for
(
iterator
it
=
begin
();
it
!=
end
(); ++
it
) {
98
if
(
highest
==
end
() ||
less_than
(
highest
->first,
it
->first)) {
99
highest
=
it
;
100
}
101
}
102
return
highest
;
103
}
fl::FixedMap::iterator
VectorType::iterator iterator
Definition
map.h:34
fl::FixedMap::end
iterator end()
Definition
map.h:44
fl::FixedMap::begin
iterator begin()
Definition
map.h:41
fl::FixedMap::highest
iterator highest(Less less_than=Less())
Definition
map.h:95
fl::FixedMap
Definition
map.h:29
fl
FixedMap
Generated on Fri Apr 18 2025 03:39:32 for FastLED by
1.13.2