[#BloombergLP-ball-CategoryManager_RadixTree_Node-2constructor-0c] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/ball.adoc[ball]::xref:BloombergLP/ball/CategoryManager_RadixTree_Node.adoc[CategoryManager_RadixTree_Node]::CategoryManager_RadixTree_Node :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<ball_categorymanager_radixtree.h>` Create a `CategoryManager_RadixTree_Node` object having the same value as the specified `original` object. Use the default allocator to supply memory for this object. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-08b.adoc[CategoryManager_RadixTree_Node](xref:BloombergLP/ball/CategoryManager_RadixTree_Node.adoc[CategoryManager_RadixTree_Node] const& original); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-08b.adoc[_» more..._]# Create a `CategoryManager_RadixTree_Node` object having the same value as the specified `original` object by moving (in amortized constant time) the contents of `original` to the newly‐created object. The allocator associated with `original` is propagated for use in the newly‐created object. `original` is left in a valid but unspecified state. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-03.adoc[CategoryManager_RadixTree_Node](xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<CategoryManager_RadixTree_Node>] original) noexcept; ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-03.adoc[_» more..._]# Create a `CategoryManager_RadixTree_Node` object having the same value as the specified `original` object, and use the specified `allocator` to supply memory for this new object. The contents of `original` are moved (in amortized constant time) to the newly‐created object if `allocator == original.get_allocator()`, and are move‐inserted (in linear time) using `allocator` otherwise. `original` is left in a valid but unspecified state. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-07.adoc[CategoryManager_RadixTree_Node]( xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<CategoryManager_RadixTree_Node>] original, xref:BloombergLP/ball/CategoryManager_RadixTree_Node/allocator_type.adoc[allocator_type] const& allocator); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-07.adoc[_» more..._]# Create a `CategoryManager_RadixTree_Node` object having the same value as the specified `original` object, and use the specified `allocator` to supply memory for this new object. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-080.adoc[CategoryManager_RadixTree_Node]( xref:BloombergLP/ball/CategoryManager_RadixTree_Node.adoc[CategoryManager_RadixTree_Node] const& original, xref:BloombergLP/ball/CategoryManager_RadixTree_Node/allocator_type.adoc[allocator_type] const& allocator); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-080.adoc[_» more..._]# Create a `CategoryManager_RadixTree_Node` object with the specified `prefix` and no value. Optionally specify an `allocator` (e.g., the address of a `bslma::Allocator` object) to supply memory; otherwise, the default allocator is used. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-0e.adoc[CategoryManager_RadixTree_Node]( std::string_view const& prefix, xref:BloombergLP/ball/CategoryManager_RadixTree_Node/allocator_type.adoc[allocator_type] const& allocator = allocator_type()); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree_Node/2constructor-0e.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#