Constructs a set from the range [first, last)].
Declared in <absl/container/linked_hash_set.h>
template<class InputIt>
linked_hash_set(
InputIt first,
InputIt last,
allocator_type const& alloc);
| Name | Description |
|---|---|
| first | Iterator to the first element in the range. |
| last | Iterator past the last element in the range. |
| alloc | The allocator to use. |