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

◆ insert() [3/6]

template<typename Key, typename Value, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
iterator fl::MapRedBlackTree< Key, Value, Compare, Allocator >::insert ( const_iterator hint,
value_type && value )
inline

Definition at line 1180 of file rbtree.h.

1180 {
1181 (void)hint; // Hint parameter not currently used in implementation
1182 auto result = mTree.insert(fl::move(value));
1183 return result.first;
1184 }