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

◆ operator--() [1/2]

template<typename T, typename Compare = less<T>, typename Allocator = allocator_slab<char>>
iterator & fl::RedBlackTree< T, Compare, Allocator >::iterator::operator-- ( )
inline

Definition at line 395 of file rbtree.h.

395 {
396 if (mNode) {
398 } else if (mTree && mTree->mRoot) {
399 mNode = mTree->maximum(mTree->mRoot);
400 }
401 return *this;
402 }
const RedBlackTree * mTree
Definition rbtree.h:341
RBNode * predecessor(RBNode *x) const
Definition rbtree.h:356

References iterator(), mNode, mTree, and predecessor().

+ Here is the call graph for this function: