empty (1) | unordered_set();explicit unordered_set ( size_type n, const hasher& hf = hasher(), const key_equal& eql = key_equal(), const allocator_type& alloc = allocator_type() );explicit unordered_set ( const allocator_type& alloc ); unordered_set ( size_type n, const allocator_type& alloc ); unordered_set ( size_type n, const hasher& hf, const allocator_type& alloc ); |
---|
range (2) | template <class InputIterator> unordered_set ( InputIterator first, InputIterator last, size_type n = /* see below */, const hasher& hf = hasher(), const key_equal& eql = key_equal(), const allocator_type& alloc = allocator_type() );template <class InputIterator> unordered_set ( InputIterator first, InputIterator last, size_type n, const allocator_type& alloc );template <class InputIterator> unordered_set ( InputIterator first, InputIterator last, size_type n, const hasher& hf, const allocator_type& alloc ); |
---|
initializer list (5) | unordered_set ( initializer_list<value_type> il, size_type n = /* see below */, const hasher& hf = hasher(), const key_equal& eql = key_equal(), const allocator_type& alloc = allocator_type() );unordered_set ( initializer_list<value_type> il, size_type n, const allocator_type& alloc );unordered_set ( initializer_list<value_type> il, size_type n, const hasher& hf, const allocator_type& alloc ); |
---|