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

◆ maximum()

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

Definition at line 155 of file rbtree.h.

155 {
156 while (x->right != nullptr) {
157 x = x->right;
158 }
159 return x;
160 }