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

◆ emplace()

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

Definition at line 471 of file unordered_map.h.

471 {
472 // Construct a pair from the arguments
474 // Use move-based insert since we just constructed this pair
475 return insert(fl::move(kv));
476 }
pair< iterator, bool > insert(const Key &key, const T &value)