FastLED 3.9.15
Loading...
Searching...
No Matches

◆ upper_bound() [1/2]

template<typename Key, typename Value, typename Less = fl::DefaultLess<Key>>
iterator fl::SortedHeapMap< Key, Value, Less >::upper_bound ( const Key & key)
inline

Definition at line 340 of file map.h.

340 {
342 if (it != end() && it->first == key) {
343 ++it;
344 }
345 return it;
346 }
iterator end()
Definition map.h:324
SortedHeapVector< Pair, PairLess >::iterator iterator
Definition map.h:254
iterator lower_bound(const Key &key)
Definition map.h:334