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

◆ upper_bound() [2/2]

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

Definition at line 460 of file map.h.

460 {
462 if (it != end() && it->first == key) {
463 ++it;
464 }
465 return it;
466 }
iterator end()
Definition map.h:316
iterator lower_bound(const Key &key)
Definition map.h:444
SortedHeapVector< value_type, PairLess >::const_iterator const_iterator
Definition map.h:307