absl::linked_hash_map::merge

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.

template<
    typename H,
    typename E>
void
merge(linked_hash_map<Key, Value, H, E, Alloc>& src);
» more...

Merges the elements of another map into this one.

template<
    typename H,
    typename E>
void
merge(linked_hash_map<Key, Value, H, E, Alloc>&& src);
» more...

Parameters

NameDescription
srcThe source map whose elements are moved in.