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

◆ operator*()

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

Definition at line 373 of file rbtree.h.

373 {
374 FASTLED_ASSERT(mNode != nullptr, "RedBlackTree::iterator: dereferencing end iterator");
375 return mNode->data;
376 }

References mNode.