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

◆ set() [5/5]

template<typename Key, typename Allocator = fl::allocator_slab<Key>>
fl::set< Key, Allocator >::set ( fl::initializer_list< Key > init)
inline

Definition at line 399 of file set.h.

399 {
400 for (const auto& elem : init) {
401 insert(elem);
402 }
403 }
fl::pair< const_iterator, bool > insert(const Key &key)
Definition set.h:433
Definition set.h:367