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