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

◆ equal_range() [2/2]

template<typename Key, typename Less = fl::less<Key>>
fl::pair< const_iterator, const_iterator > fl::flat_set< Key, Less >::equal_range ( const Key & key) const
inline

Definition at line 197 of file flat_set.h.

197 {
198 auto lower = lower_bound(key);
199 auto upper = upper_bound(key);
201 }
iterator upper_bound(const Key &key)
Definition flat_set.h:155
iterator lower_bound(const Key &key)
Definition flat_set.h:119

References lower_bound(), and upper_bound().

+ Here is the call graph for this function: