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

◆ operator--() [1/2]

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

Definition at line 471 of file rbtree.h.

471 {
472 if (node_) {
474 } else if (mTree && mTree->root_) {
475 // Decrementing from end() should give us the maximum element
476 node_ = mTree->maximum(mTree->root_);
477 }
478 return *this;
479 }
const Node * predecessor(const Node *x) const
Definition rbtree.h:431
const RedBlackTree * mTree
Definition rbtree.h:416

References const_iterator(), mTree, node_, and predecessor().

+ Here is the call graph for this function: