[#bsl-unordered_set-0d2d-2constructor-0a8] = xref:bsl.adoc[bsl]::xref:bsl/unordered_set-0d2d.adoc[unordered_set]::unordered_set :relfileprefix: ../../ :mrdocs: Create an unordered set from the specified iterator range. == Synopsis Declared in `<bslstl_unorderedset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class INPUT_ITERATOR> unordered_set( INPUT_ITERATOR first, INPUT_ITERATOR last, ALLOCATOR const& basicAllocator); ---- == Description Same as the preceding overload, using the specified allocator. == Parameters [cols="1,4"] |=== | Name| Description | *first* | the start of the iterator range | *last* | one past the end of the iterator range | *basicAllocator* | the allocator used to supply memory |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#