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

◆ get()

template<typename Key, typename Value, typename Less = fl::less<Key>>
bool fl::SortedHeapMap< Key, Value, Less >::get ( const Key & key,
Value * value ) const
inline

Definition at line 499 of file map.h.

499 {
501 if (it != end()) {
502 *value = it->second;
503 return true;
504 }
505 return false;
506 }
iterator end()
Definition map.h:316
iterator find(const Key &key)
Definition map.h:416
SortedHeapVector< value_type, PairLess >::const_iterator const_iterator
Definition map.h:307