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

◆ erase() [2/3]

template<typename Key>
iterator fl::unordered_set< Key >::erase ( const_iterator pos)
inline

Definition at line 124 of file unordered_set.h.

124 {
125 // Extract the key from the const_iterator before erasing
126 Key key = *pos;
127 data.erase(key);
128 // Find the next element after erasing
129 return find(key);
130 }
iterator find(const Key &key)
fl::unordered_map< Key, bool > data

References data, find(), and pos.

+ Here is the call graph for this function: