Constructors
Declared in <ball_categorymanager_radixtree.h>
Create an empty CategoryManager_RadixTree.
CategoryManager_RadixTree();
» more...
Create a tree by moving from the specified original object.
CategoryManager_RadixTree(bslmf::MovableRef<CategoryManager_RadixTree> original) noexcept;
» more...
Same as the default constructor, using the specified allocator.
explicit
CategoryManager_RadixTree(allocator_type const& allocator);
» more...
Create a tree by moving from original using the specified allocator.
CategoryManager_RadixTree(
bslmf::MovableRef<CategoryManager_RadixTree> original,
allocator_type const& allocator);
» more...
Create a tree having the same value as the specified original object.
CategoryManager_RadixTree(
CategoryManager_RadixTree const& original,
allocator_type const& allocator = allocator_type());
» more...
| Name | Description |
|---|---|
| original | tree to move from |
| allocator | allocator used to supply memory |