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

◆ equal_range() [1/2]

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

Definition at line 244 of file flat_map.h.

244 {
245 auto lower = lower_bound(key);
246 auto upper = upper_bound(key);
248 }
iterator lower_bound(const Key &key) FL_NOEXCEPT
Definition flat_map.h:166
iterator upper_bound(const Key &key) FL_NOEXCEPT
Definition flat_map.h:202