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

◆ insert() [1/4]

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

Definition at line 375 of file map.h.

375 {
376 return data.insert(value_type(key, value), result);
377 }
fl::pair< Key, Value > value_type
Definition map.h:275
SortedHeapVector< value_type, PairLess > data
Definition map.h:292