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
79
of file
map.h
.
79
{
80
iterator
highest
=
end
();
81
for
(
iterator
it
=
begin
();
it
!=
end
(); ++
it
) {
82
if
(
highest
==
end
() ||
less_than
(
highest
->first,
it
->first)) {
83
highest
=
it
;
84
}
85
}
86
return
highest
;
87
}
fl::FixedMap::iterator
VectorType::iterator iterator
Definition
map.h:29
fl::FixedMap::end
iterator end()
Definition
map.h:36
fl::FixedMap::begin
iterator begin()
Definition
map.h:35
fl::FixedMap::highest
iterator highest(Less less_than=Less())
Definition
map.h:79
fl::FixedMap
Definition
map.h:24
fl
FixedMap
Generated on Thu May 29 2025 04:44:58 for FastLED by
1.13.2