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 58 of file map.h.

58 {
60 for (iterator it = begin(); it != end(); ++it) {
61 if (lowest == end() || less_than(it->first, lowest->first)) {
62 lowest = it;
63 }
64 }
65 return lowest;
66 }
VectorType::iterator iterator
Definition map.h:29
iterator end()
Definition map.h:36
iterator lowest(Less less_than=Less())
Definition map.h:58
iterator begin()
Definition map.h:35