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

◆ emplace()

template<typename Key, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
template<typename... Args>
fl::pair< const_iterator, bool > fl::SetRedBlackTree< Key, Compare, Allocator >::emplace ( Args &&... args)
inline

Definition at line 962 of file rbtree.h.

962 {
963 auto result = mTree.emplace(fl::forward<Args>(args)...);
964 return fl::pair<const_iterator, bool>(result.first, result.second);
965 }