absl::linked_hash_set::merge

Merges the elements of another set into this one.

Synopses

Declared in <absl/container/linked_hash_set.h>

Merges the elements of another set into this one.

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

Merges the elements of another set into this one.

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

Parameters

NameDescription
srcThe source set to merge from.