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 951 of file rbtree.h.

951 {
952 auto result = mTree.insert(value);
953 return fl::pair<const_iterator, bool>(result.first, result.second);
954 }