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

◆ find() [2/2]

template<typename Key, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>>
const_iterator fl::unordered_set< Key, Hash, KeyEqual >::find ( const Key & key) const
inline

Definition at line 110 of file unordered_set.h.

110 {
111 auto map_it = data.find(key);
112 return const_iterator(map_it);
113 }
fl::unordered_map< Key, bool, Hash, KeyEqual > data

References data.