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

◆ rbegin() [2/2]

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

Definition at line 791 of file rbtree.h.

791 {
792 if (mRoot == nullptr) return const_reverse_iterator(nullptr, this);
793 return const_reverse_iterator(maximum(mRoot), this);
794 }
RBNode * maximum(RBNode *x) const
Definition rbtree.h:162
RBNode * mRoot
Definition rbtree.h:61