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

◆ RedBlackTree() [1/3]

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

707 : mRoot(nullptr), mSize(0), mComp(comp), mAlloc(alloc) {}
NodeAllocator mAlloc
Definition rbtree.h:64
fl::size mSize
Definition rbtree.h:62
Compare mComp
Definition rbtree.h:63
RBNode * mRoot
Definition rbtree.h:61