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

◆ insert() [4/6]

template<typename Key, typename T, typename Hash = Hash<Key>, typename KeyEqual = EqualTo<Key>, int INLINED_COUNT = FASTLED_HASHMAP_INLINED_COUNT>
template<typename InputIt>
void fl::unordered_map< Key, T, Hash, KeyEqual, INLINED_COUNT >::insert ( InputIt first,
InputIt last )
inline

Definition at line 399 of file unordered_map.h.

399 {
400 for (; first != last; ++first) {
401 insert(*first); // Uses pair-based insert
402 }
403 }
pair< iterator, bool > insert(const Key &key, const T &value)