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

◆ operator=() [2/3]

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

Definition at line 406 of file set.h.

406 {
407 clear();
408 for (const auto& elem : init) {
409 insert(elem);
410 }
411 return *this;
412 }
void clear()
Definition set.h:431
fl::pair< const_iterator, bool > insert(const Key &key)
Definition set.h:433
Definition set.h:367