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

◆ rbegin() [1/2]

template<typename T, typename Compare = less<T>, typename Allocator = allocator_slab<char>>
reverse_iterator fl::RedBlackTree< T, Compare, Allocator >::rbegin ( )
inline

Definition at line 782 of file rbtree.h.

782 {
783 if (mRoot == nullptr) return reverse_iterator(nullptr, this);
784 return reverse_iterator(maximum(mRoot), this);
785 }
RBNode * maximum(RBNode *x) const
Definition rbtree.h:162
RBNode * mRoot
Definition rbtree.h:61

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

+ Here is the caller graph for this function: