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

◆ operator=() [2/3]

template<typename Key, typename Value, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
MapRedBlackTree & fl::MapRedBlackTree< Key, Value, Compare, Allocator >::operator= ( fl::initializer_list< value_type > ilist)
inline

Definition at line 1062 of file rbtree.h.

1062 {
1063 clear();
1064 for (const auto& value : ilist) {
1065 mTree.insert(value);
1066 }
1067 return *this;
1068 }