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

◆ insert() [2/4]

template<typename Key, typename Value, typename Compare = less<Key>, typename Allocator = allocator<fl::pair<Key, Value>>>
void fl::MultiMapTree< Key, Value, Compare, Allocator >::insert ( fl::initializer_list< value_type > ilist)
inline

Definition at line 345 of file multi_map.h.

345 {
346 for (const auto& value : ilist) {
347 insert(value);
348 }
349 }
iterator insert(const value_type &value)
Definition multi_map.h:316