Constructs an element in place in the set.
Declared in <absl/container/linked_hash_set.h>
template<typename... Args>
std::pair<iterator, bool>
emplace(Args&&... args);
A pair of an iterator to the element and a bool that is true if insertion took place.
| Name | Description |
|---|---|
| args | The arguments used to construct the element. |