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

◆ insert() [3/4]

template<typename Key, typename Compare = less<Key>, typename Allocator = allocator<Key>>
template<typename InputIt>
void fl::MultiSetTree< Key, Compare, Allocator >::insert ( InputIt first,
InputIt last )
inline

Definition at line 233 of file multi_set.h.

233 {
234 for (InputIt it = first; it != last; ++it) {
235 insert(*it);
236 }
237 }
iterator insert(const value_type &value)
Definition multi_set.h:211