[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / containers / unord / unord.multiset / hash_function.pass.cpp
blob17b8d006f49bccc24c72b100bb7913c1c033a1ef
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <unordered_set>
11 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
12 // class Alloc = allocator<Value>>
13 // class unordered_multiset
15 // hasher hash_function() const;
17 #include <unordered_set>
18 #include <cassert>
20 int main(int, char**) {
21 typedef std::unordered_multiset<int> set_type;
22 set_type s;
24 set_type::iterator i1 = s.insert(1);
25 set_type::iterator i2 = s.insert(1);
27 const set_type& cs = s;
28 assert(cs.hash_function()(*i1) == cs.hash_function()(*i2));
29 assert(cs.hash_function()(*i2) == cs.hash_function()(*i1));
31 return 0;