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

◆ insert() [5/6]

template<typename Key, typename Value, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
template<typename InputIt>
void fl::MapRedBlackTree< Key, Value, Compare, Allocator >::insert ( InputIt first,
InputIt last )
inline

Definition at line 1157 of file rbtree.h.

1157 {
1158 for (InputIt it = first; it != last; ++it) {
1159 mTree.insert(*it);
1160 }
1161 }