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

◆ emplace()

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

Definition at line 442 of file set.h.

442 {
443 return mTree.emplace(fl::forward<Args>(args)...);
444 }
TreeType mTree
Definition set.h:370
Definition set.h:367