[#BloombergLP-bdlma-LocalBufferedObject-2constructor-0f6] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlma.adoc[bdlma]::xref:BloombergLP/bdlma/LocalBufferedObject.adoc[LocalBufferedObject]::LocalBufferedObject :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<bdlma_localbufferedobject.h>` Create the `value_type` object using the specified `initializer_list` and using the sequential allocator based on a local stack buffer of (template parameter) `t_BUFFER_SIZE` size; if local stack memory is exausted, use the default allocator to supply additional heap memory. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INIT_LIST_TYPE> xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-0f4.adoc[LocalBufferedObject](std::initializer_list<INIT_LIST_TYPE> il); ---- [.small]#xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-0f4.adoc[_» more..._]# Create a `value_type` object using the specified `args` that will allocate memory from a sequential allocator based on a local stack buffer of (template parameter) `t_BUFFER_SIZE` size; if local stack memory is exhausted, use the default allocator to supply additional heap memory. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... ARGS> explicit xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-02.adoc[LocalBufferedObject](ARGS&&... args); ---- [.small]#xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-02.adoc[_» more..._]# Create the `value_type` object using the specified `initializer_list` and using the sequential allocator based on a local stack buffer of (template parameter) `t_BUFFER_SIZE` size; if local stack memory is exausted, use the specified `allocator` to supply additional heap memory. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INIT_LIST_TYPE> xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-0d.adoc[LocalBufferedObject]( std::allocator_arg_t, xref:BloombergLP/bdlma/LocalBufferedObject/allocator_type.adoc[allocator_type] allocator, std::initializer_list<INIT_LIST_TYPE> il); ---- [.small]#xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-0d.adoc[_» more..._]# Create a `value_type` object using the specified `args` that will allocate memory from a sequential allocator based on a local stack buffer of (template parameter) `t_BUFFER_SIZE` size; if local stack memory is exhausted, use the specified `allocator` to supply additional heap memory. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... ARGS> xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-0f3.adoc[LocalBufferedObject]( std::allocator_arg_t, xref:BloombergLP/bdlma/LocalBufferedObject/allocator_type.adoc[allocator_type] allocator, ARGS&&... args); ---- [.small]#xref:BloombergLP/bdlma/LocalBufferedObject/2constructor-0f3.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#