llvm-project
51 строка · 1.2 Кб
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//===----------------------------------------------------------------------===//
8
9// UNSUPPORTED: c++03, c++11, c++14, c++17
10
11// <set>
12
13// class set
14
15// template<typename K> bool contains(const K& x) const; // C++20
16
17#include <cassert>
18#include <set>
19#include <utility>
20
21struct Comp {
22using is_transparent = void;
23
24bool operator()(const std::pair<int, int>& lhs,
25const std::pair<int, int>& rhs) const {
26return lhs < rhs;
27}
28
29bool operator()(const std::pair<int, int>& lhs, int rhs) const {
30return lhs.first < rhs;
31}
32
33bool operator()(int lhs, const std::pair<int, int>& rhs) const {
34return lhs < rhs.first;
35}
36};
37
38template <typename Container>
39void test() {
40Container s{{2, 1}, {1, 2}, {1, 3}, {1, 4}, {2, 2}};
41
42assert(s.contains(1));
43assert(!s.contains(-1));
44}
45
46int main(int, char**) {
47test<std::set<std::pair<int, int>, Comp> >();
48test<std::multiset<std::pair<int, int>, Comp> >();
49
50return 0;
51}
52