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

◆ maximum()

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

Definition at line 162 of file rbtree.h.

162 {
163 while (x->right != nullptr) {
164 x = x->right;
165 }
166 return x;
167 }

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

+ Here is the caller graph for this function: