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

◆ emplace_hint()

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

Definition at line 1190 of file rbtree.h.

1190 {
1191 (void)hint; // Hint parameter not currently used in implementation
1192 auto result = mTree.emplace(fl::forward<Args>(args)...);
1193 return result.first;
1194 }