absl::linked_hash_set::linked_hash_set

Constructs a set from the range [first, last)].

Synopsis

Declared in <absl/container/linked_hash_set.h>

template<class InputIt>
linked_hash_set(
    InputIt first,
    InputIt last,
    allocator_type const& alloc);

Parameters

NameDescription
firstIterator to the first element in the range.
lastIterator past the last element in the range.
allocThe allocator to use.