emplace overloads
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);
» more...
Replace the held object with one constructed from args.
template<class... ARGS>
void
emplace(ARGS&&... args);
» more...
| Name | Description |
|---|---|
| il | initializer list used to construct the new held object |
| args | constructor arguments for the new held object |