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

◆ insert() [6/6]

template<typename Key, typename T, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
pair< iterator, bool > fl::unordered_map< Key, T, Hash, KeyEqual, INLINED_COUNT >::insert ( pair< Key, T > && kv)
inline

Definition at line 392 of file unordered_map.h.

392 {
393 return insert(fl::move(kv.first), fl::move(kv.second));
394 }
pair< iterator, bool > insert(const Key &key, const T &value)