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

◆ insert() [1/2]

template<typename Key, typename Compare = less<Key>, typename Allocator = allocator_slab<char>>
fl::pair< const_iterator, bool > fl::SetRedBlackTree< Key, Compare, Allocator >::insert ( const value_type & value)
inline

Definition at line 1494 of file rbtree.h.

1494 {
1495 auto result = mTree.insert(value);
1496 return fl::pair<const_iterator, bool>(result.first, result.second);
1497 }