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 377 of file rbtree.h.

377 {
378 FASTLED_ASSERT(mNode != nullptr, "RedBlackTree::iterator: dereferencing end iterator");
379 return &(mNode->data);
380 }

References mNode.