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

◆ count()

template<typename T, typename Compare = less<T>, typename Allocator = allocator_slab<char>>
fl::size fl::RedBlackTree< T, Compare, Allocator >::count ( const value_type & value) const
inline

Definition at line 655 of file rbtree.h.

655 {
656 return findNode(value) != nullptr ? 1 : 0;
657 }
Node * findNode(const value_type &value) const
Definition rbtree.h:220