Constructors
Synopses
Declared in <ball_categorymanager_radixtree.h>
Create a node having the same value as the specified original object.
Create a node by moving from the specified original object.
Create a node by moving from original using the specified allocator.
CategoryManager_RadixTree_Node(
bslmf::MovableRef<CategoryManager_RadixTree_Node> original,
allocator_type const& allocator);
Create a node having the same value as the specified original object.
CategoryManager_RadixTree_Node(
CategoryManager_RadixTree_Node const& original,
allocator_type const& allocator);
Create a node with the specified prefix and no value.
explicit
CategoryManager_RadixTree_Node(
std::string_view const& prefix,
allocator_type const& allocator = allocator_type());
Parameters
Name |
Description |
original |
node to copy |
allocator |
allocator used to supply memory |
prefix |
prefix string stored in this node |
Created with MrDocs