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

◆ RedBlackTree() [1/2]

template<typename T, typename Compare = less<T>, typename Allocator = allocator_slab<char>>
fl::RedBlackTree< T, Compare, Allocator >::RedBlackTree ( const Compare & comp = Compare(),
const Allocator & alloc = Allocator() )
inline

Definition at line 497 of file rbtree.h.

498 : root_(nullptr), size_(0), comp_(comp), alloc_(alloc) {}
Compare comp_
Definition rbtree.h:56
fl::size size_
Definition rbtree.h:55
NodeAllocator alloc_
Definition rbtree.h:57
Node * root_
Definition rbtree.h:54