[#absl-linked_hash_set-2constructor-002] = 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 InputIter> linked_hash_set( InputIter first, InputIter last, size_t reservation_size, xref:absl/linked_hash_set/hasher.adoc[hasher] const& hash, 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. | *reservation_size* | The number of elements to reserve space for. | *hash* | The hash functor to use. | *alloc* | The allocator to use. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#