FastLED
3.9.15
Loading...
Searching...
No Matches
◆
lowest()
[2/2]
template<typename
Key
, typename Value, size_t N>
template<typename Less>
const_iterator
fl::FixedMap
<
Key
, Value, N >::lowest
(
Less
less_than
=
Less()
)
const
inline
Definition at line
84
of file
map.h
.
84
{
85
const_iterator
lowest
=
end
();
86
for
(
const_iterator
it
=
begin
();
it
!=
end
(); ++
it
) {
87
if
(
lowest
==
end
() ||
less_than
(
it
->first,
lowest
->first)) {
88
lowest
=
it
;
89
}
90
}
91
return
lowest
;
92
}
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::const_iterator
VectorType::const_iterator const_iterator
Definition
map.h:35
fl::FixedMap
Definition
map.h:29
fl
FixedMap
Generated on Fri Apr 18 2025 03:39:32 for FastLED by
1.13.2