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

◆ emplace_hint()

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

Definition at line 481 of file unordered_map.h.

481 {
482 (void)hint; // Hint is ignored in hash maps
483 return emplace(fl::forward<Args>(args)...).first;
484 }
pair< iterator, bool > emplace(Args &&... args)