emplace overloads

Synopses

Declared in <bdlma_localbufferedobject.h>

Replace the held object with one constructed from il.

template<class INIT_LIST_TYPE>
void
emplace(std::initializer_list<INIT_LIST_TYPE> il);

Replace the held object with one constructed from args.

template<class... ARGS>
void
emplace(ARGS&&... args);

Parameters

Name

Description

il

initializer list used to construct the new held object

args

constructor arguments for the new held object

Created with MrDocs