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 328 of file set.h.

328 {
329 return tree_.emplace(fl::forward<Args>(args)...);
330 }
TreeType tree_
Definition set.h:281
Definition set.h:278