[#absl-linked_hash_set-2constructor-07] = xref:absl.adoc[absl]::xref:absl/linked_hash_set.adoc[linked_hash_set]::linked_hash_set :relfileprefix: ../../ :mrdocs: Constructs a set from the range `[first, last)]`. == Synopsis Declared in `<absl/container/linked_hash_set.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class InputIt> linked_hash_set( InputIt first, InputIt last, xref:absl/linked_hash_set/allocator_type.adoc[allocator_type] const& alloc); ---- == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#