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

◆ MapRedBlackTree() [4/5]

template<typename Key, typename Value, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
template<typename InputIt>
fl::MapRedBlackTree< Key, Value, Compare, Allocator >::MapRedBlackTree ( InputIt first,
InputIt last,
const Compare & comp = Compare(),
const Allocator & alloc = Allocator() )
inline

Definition at line 1074 of file rbtree.h.

1078 // Insert all elements from the range
1079 for (InputIt it = first; it != last; ++it) {
1080 mTree.insert(*it);
1081 }
1082 }