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

◆ insert() [3/6]

template<typename Key, typename T, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
void fl::unordered_map< Key, T, Hash, KeyEqual, INLINED_COUNT >::insert ( fl::initializer_list< pair< Key, T > > init)
inline

Definition at line 407 of file unordered_map.h.

407 {
408 for (const auto& kv : init) {
409 insert(kv); // Uses pair-based insert
410 }
411 }
pair< iterator, bool > insert(const Key &key, const T &value)