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

◆ minimum()

template<typename T, typename Compare = less<T>, typename Allocator = allocator_slab<char>>
Node * fl::RedBlackTree< T, Compare, Allocator >::minimum ( Node * x) const
inlineprivate

Definition at line 148 of file rbtree.h.

148 {
149 while (x->left != nullptr) {
150 x = x->left;
151 }
152 return x;
153 }

Referenced by fl::RedBlackTree< value_type, PairCompare, Allocator >::begin(), fl::RedBlackTree< value_type, PairCompare, Allocator >::begin(), and fl::RedBlackTree< value_type, PairCompare, Allocator >::erase().

+ Here is the caller graph for this function: