Moves an element from another map into this one at the given position.
Declared in <absl/container/linked_hash_map.h>
template<
typename H,
typename E>
void
splice(
const_iterator pos,
linked_hash_map<Key, Value, H, E, Alloc>& list,
const_iterator it);
| 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. |