Lines Matching refs:hf
54 explicit unordered_map(size_type n, const hasher& hf = hasher(),
59 size_type n = 0, const hasher& hf = hasher(),
64 const hasher& hf = hasher(), const key_equal& eql = key_equal(),
77 const hasher& hf = hasher(), const key_equal& eql = key_equal(),
81 unordered_map(size_type n, const hasher& hf, const allocator_type& a)
82 : unordered_map(n, hf, key_equal(), a) {} // C++14
87 unordered_map(InputIterator f, InputIterator l, size_type n, const hasher& hf,
89 : unordered_map(f, l, n, hf, key_equal(), a) {} // C++14
94 unordered_map(from_range_t, R&& rg, size_type n, const hasher& hf, const allocator_type& a)
95 : unordered_map(from_range, std::forward<R>(rg), n, hf, key_equal(), a) { } // C++23
98 unordered_map(initializer_list<value_type> il, size_type n, const hasher& hf,
100 : unordered_map(il, n, hf, key_equal(), a) {} // C++14
341 explicit unordered_multimap(size_type n, const hasher& hf = hasher(),
346 size_type n = 0, const hasher& hf = hasher(),
351 const hasher& hf = hasher(), const key_equal& eql = key_equal(),
363 const hasher& hf = hasher(), const key_equal& eql = key_equal(),
367 unordered_multimap(size_type n, const hasher& hf, const allocator_type& a)
368 : unordered_multimap(n, hf, key_equal(), a) {} // C++14
373 unordered_multimap(InputIterator f, InputIterator l, size_type n, const hasher& hf,
375 : unordered_multimap(f, l, n, hf, key_equal(), a) {} // C++14
380 … unordered_multimap(from_range_t, R&& rg, size_type n, const hasher& hf, const allocator_type& a)
381 … : unordered_multimap(from_range, std::forward<R>(rg), n, hf, key_equal(), a) { } // C++23
384 unordered_multimap(initializer_list<value_type> il, size_type n, const hasher& hf,
386 : unordered_multimap(il, n, hf, key_equal(), a) {} // C++14