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

◆ insert() [2/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,
const value_type & value )
inline

Definition at line 1174 of file rbtree.h.

1174 {
1175 (void)hint; // Hint parameter not currently used in implementation
1176 auto result = mTree.insert(value);
1177 return result.first;
1178 }