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

◆ upper_bound() [2/2]

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

Definition at line 381 of file map.h.

381 {
383 if (it != end() && it->first == key) {
384 ++it;
385 }
386 return it;
387 }
iterator end()
Definition map.h:347
iterator lower_bound(const Key &key)
Definition map.h:365
SortedHeapVector< Pair, PairLess >::const_iterator const_iterator
Definition map.h:279