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

◆ try_emplace() [2/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,
const Key & key,
Args &&... args )
inline

Definition at line 1282 of file rbtree.h.

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