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

◆ try_emplace() [3/4]

template<typename Key, typename Value, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
template<typename... Args>
iterator fl::MapRedBlackTree< Key, Value, Compare, Allocator >::try_emplace ( const_iterator hint,
Key && key,
Args &&... args )
inline

Definition at line 1289 of file rbtree.h.

1289 {
1290 (void)hint; // Hint parameter not currently used in implementation
1292 return result.first;
1293 }
fl::pair< iterator, bool > try_emplace(const Key &key, Args &&... args)
Definition rbtree.h:1251