[#absl-linked_hash_map-splice] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::splice :relfileprefix: ../../ :mrdocs: Moves an element from another map into this one at the given position. == Synopsis Declared in `<absl/container/linked_hash_map.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename H, typename E> void splice( xref:absl/linked_hash_map/const_iterator.adoc[const_iterator] pos, xref:absl/linked_hash_map.adoc[linked_hash_map<Key, Value, H, E, Alloc>]& list, xref:absl/linked_hash_map/const_iterator.adoc[const_iterator] it); ---- == Parameters [cols="1,4"] |=== | Name| Description | *list* | The source map to splice the element from. | *it* | An iterator to the element in `list` to move. | *pos* | A position hint, which is ignored. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#