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

◆ operator*()

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

Definition at line 460 of file rbtree.h.

460 {
461 FASTLED_ASSERT(mNode != nullptr, "RedBlackTree::iterator: dereferencing end iterator");
462 return mNode->data;
463 }

References mNode.