[#bsl-list-054-insert-06] = xref:bsl.adoc[bsl]::xref:bsl/list-054.adoc[list]::insert :relfileprefix: ../../ :mrdocs: Insert a copy of `value` at `dstPosition` and return an iterator to it. == Synopsis Declared in `<bslstl_list.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/list-054/iterator.adoc[list<VALUE, ALLOCATOR>::iterator] insert( xref:bsl/list-054/const_iterator.adoc[const_iterator] dstPosition, xref:bsl/list-054/value_type.adoc[value_type] const& value); ---- == Description This method offers full guarantee of rollback in case an exception is thrown other than by the `VALUE` copy constructor or assignment operator. This method requires that the (template parameter) `VALUE` be `copy‐insertable` into this list (see {Requirements on `VALUE`}). The behavior is undefined unless `dstPosition` is an iterator in the range `[cbegin() .. cend()]endpoints included)`. == Return Value iterator to the newly inserted element == Parameters [cols="1,4"] |=== | Name| Description | *dstPosition* | location before which the element is inserted | *value* | element to copy‐insert |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#