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

◆ equal_range() [1/2]

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

Definition at line 191 of file flat_set.h.

191 {
192 auto lower = lower_bound(key);
193 auto upper = upper_bound(key);
195 }
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: