[#bsl-list-054-splice-0e] = xref:bsl.adoc[bsl]::xref:bsl/list-054.adoc[list]::splice :relfileprefix: ../../ :mrdocs: Remove the single element at the specified `srcNode` from the specified `src` list, and insert it at the specified `dstPosition` in this list. The behavior is undefined unless `srcNode` refers to a valid element in `src`, this list and `src` use the same allocator, and `dstPosition` is in the range `[begin() .. end()]` (note both endpoints included). Note that `src` and `*this` may be the same list, in which case the element is moved to a (possibly) new position in the list. == Synopsis Declared in `<bslstl_list.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void splice( xref:bsl/list-054/const_iterator.adoc[const_iterator] dstPosition, xref:bsl/list-054.adoc[list]& src, xref:bsl/list-054/const_iterator.adoc[const_iterator] srcNode); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#