[#absl-linked_hash_map-merge-03] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::merge :relfileprefix: ../../ :mrdocs: Merges the elements of another map into this one. == Synopses Declared in `<absl/container/linked_hash_map.h>` Merges the elements of another map into this one. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename H, typename E> void xref:absl/linked_hash_map/merge-0c.adoc[merge](xref:absl/linked_hash_map.adoc[linked_hash_map<Key, Value, H, E, Alloc>]& src); ---- [.small]#xref:absl/linked_hash_map/merge-0c.adoc[_» more..._]# Merges the elements of another map into this one. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename H, typename E> void xref:absl/linked_hash_map/merge-06.adoc[merge](xref:absl/linked_hash_map.adoc[linked_hash_map<Key, Value, H, E, Alloc>]&& src); ---- [.small]#xref:absl/linked_hash_map/merge-06.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *src* | The source map whose elements are moved in. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#