FastLED
3.9.15
Loading...
Searching...
No Matches
◆
lowest()
[1/2]
template<typename
Key
, typename Value, size_t N>
template<typename Less>
iterator
fl::FixedMap
<
Key
, Value, N >::lowest
(
Less
less_than
=
Less()
)
inline
Definition at line
73
of file
map.h
.
73
{
74
iterator
lowest
=
end
();
75
for
(
iterator
it
=
begin
();
it
!=
end
(); ++
it
) {
76
if
(
lowest
==
end
() ||
less_than
(
it
->first,
lowest
->first)) {
77
lowest
=
it
;
78
}
79
}
80
return
lowest
;
81
}
fl::FixedMap::iterator
VectorType::iterator iterator
Definition
map.h:34
fl::FixedMap::end
iterator end()
Definition
map.h:44
fl::FixedMap::lowest
iterator lowest(Less less_than=Less())
Definition
map.h:73
fl::FixedMap::begin
iterator begin()
Definition
map.h:41
fl::FixedMap
Definition
map.h:29
fl
FixedMap
Generated on Fri Apr 18 2025 03:39:32 for FastLED by
1.13.2