[#BloombergLP-ball-CategoryManager_RadixTree-2constructor-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/ball.adoc[ball]::xref:BloombergLP/ball/CategoryManager_RadixTree.adoc[CategoryManager_RadixTree]::CategoryManager_RadixTree :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<ball_categorymanager_radixtree.h>` Create an empty `CategoryManager_RadixTree`. 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"] ---- xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-01.adoc[CategoryManager_RadixTree](); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-01.adoc[_» more..._]# Create a `CategoryManager_RadixTree` 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/2constructor-092.adoc[CategoryManager_RadixTree](xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<CategoryManager_RadixTree>] original) noexcept; ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-092.adoc[_» more..._]# Same as the default constructor, using the specified `allocator`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-097.adoc[CategoryManager_RadixTree](xref:BloombergLP/ball/CategoryManager_RadixTree/allocator_type.adoc[allocator_type] const& allocator); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-097.adoc[_» more..._]# Create a `CategoryManager_RadixTree` having the same value as the specified `original` object that uses the specified `allocator` to supply memory. 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/2constructor-07.adoc[CategoryManager_RadixTree]( xref:BloombergLP/bslmf/MovableRef.adoc[bslmf::MovableRef<CategoryManager_RadixTree>] original, xref:BloombergLP/ball/CategoryManager_RadixTree/allocator_type.adoc[allocator_type] const& allocator); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-07.adoc[_» more..._]# Create a `CategoryManager_RadixTree` having the same value as the specified `original` object. 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"] ---- xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-00.adoc[CategoryManager_RadixTree]( xref:BloombergLP/ball/CategoryManager_RadixTree.adoc[CategoryManager_RadixTree] const& original, xref:BloombergLP/ball/CategoryManager_RadixTree/allocator_type.adoc[allocator_type] const& allocator = allocator_type()); ---- [.small]#xref:BloombergLP/ball/CategoryManager_RadixTree/2constructor-00.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#