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

◆ insert() [3/4]

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

Definition at line 380 of file map.h.

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