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

◆ MapRedBlackTree() [5/5]

template<typename Key, typename Value, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
fl::MapRedBlackTree< Key, Value, Compare, Allocator >::MapRedBlackTree ( fl::initializer_list< value_type > init,
const Compare & comp = Compare(),
const Allocator & alloc = Allocator() )
inline

Definition at line 1087 of file rbtree.h.

1091 // Insert all elements from the initializer list
1092 for (const auto& value : init) {
1093 mTree.insert(value);
1094 }
1095 }