Inserts an element into the set.
Declared in <absl/container/linked_hash_set.h>
template<typename K = key_type>
std::pair<iterator, bool>
insert(key_arg<K> const& k);
A pair of an iterator to the element and a bool that is true if insertion took place.
| Name | Description |
|---|---|
| k | The element to insert. |