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

◆ erase() [2/3]

template<typename Key, typename Value, typename Less = fl::less<Key>>
iterator fl::SortedHeapMap< Key, Value, Less >::erase ( const_iterator pos)
inline

Definition at line 393 of file map.h.

393 {
394 Key key = pos->first;
395 data.erase(*pos);
396 return upper_bound(key);
397 }
iterator upper_bound(const Key &key)
Definition map.h:452
SortedHeapVector< value_type, PairLess > data
Definition map.h:292