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

◆ insert() [4/4]

template<typename Key, typename Value, typename Less = fl::less<Key>>
fl::pair< iterator, bool > fl::SortedHeapMap< Key, Value, Less >::insert ( value_type && value)
inline

Definition at line 368 of file map.h.

368 {
370 bool success = data.insert(fl::move(value), &result);
371 iterator it = success ? data.find(value) : data.end();
373 }
SortedHeapVector< value_type, PairLess >::iterator iterator
Definition map.h:306
SortedHeapVector< value_type, PairLess > data
Definition map.h:292