[#bsl-vector-047-emplace] = xref:bsl.adoc[bsl]::xref:bsl/vector-047.adoc[vector<unsigned long long>]::emplace :relfileprefix: ../../ :mrdocs: Insert at the specified `position` in this vector a newly created `value_type` object, constructed by forwarding `get_allocator()` (if required) and the specified (variable number of) `arguments` to the corresponding constructor of `value_type`, and return an iterator referring to the newly created and inserted element. If an exception is thrown (other than by the copy constructor, move constructor, assignment operator, or move assignment operator of `value_type`), `*this` is unaffected. Throw `std::length_error` if `size() == max_size()`. The behavior is undefined unless `position` is an iterator in the range `[begin() .. end()]` (both endpoints included). This method requires that the (template parameter) type `VALUE_TYPE` be `move‐insertable` into this vector and `emplace‐constructible` from `arguments` (see {Requirements on `VALUE_TYPE`}). == Synopsis Declared in `<bslstl_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class... Args> xref:bsl/vector-047/iterator.adoc[iterator] emplace( xref:bsl/vector-047/const_iterator.adoc[const_iterator] position, Args&&... arguments); ---- == Description NOTE: This function has been implemented inline due to an issue with the Sun compiler. [.small]#Created with https://www.mrdocs.com[MrDocs]#