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

373 {
375 if (it != end() && it->first == key) {
376 ++it;
377 }
378 return it;
379 }
iterator end()
Definition map.h:347
SortedHeapVector< Pair, PairLess >::iterator iterator
Definition map.h:278
iterator lower_bound(const Key &key)
Definition map.h:365