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

◆ MultiSetTree() [4/4]

template<typename Key, typename Compare = less<Key>, typename Allocator = allocator<Key>>
fl::MultiSetTree< Key, Compare, Allocator >::MultiSetTree ( fl::initializer_list< value_type > init,
const Compare & comp = Compare(),
const Allocator & alloc = Allocator() )
inline

Definition at line 177 of file multi_set.h.

181 for (const auto& value : init) {
182 insert(value);
183 }
184 }
TreeType mTree
Definition multi_set.h:72
iterator insert(const value_type &value)
Definition multi_set.h:211