File: find_if.cpp

package info (click to toggle)
range-v3 0.12.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,620 kB
  • sloc: cpp: 76,839; xml: 226; sh: 89; python: 34; makefile: 16; perl: 15
file content (116 lines) | stat: -rw-r--r-- 3,352 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Range v3 library
//
//  Copyright Eric Niebler 2014-present
//
//  Use, modification and distribution is subject to the
//  Boost Software License, Version 1.0. (See accompanying
//  file LICENSE_1_0.txt or copy at
//  http://www.boost.org/LICENSE_1_0.txt)
//
// Project home: https://github.com/ericniebler/range-v3

//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include <utility>
#include <vector>
#include <range/v3/core.hpp>
#include <range/v3/algorithm/find_if.hpp>
#include "../simple_test.hpp"
#include "../test_iterators.hpp"

struct S
{
    int i_;
};

constexpr bool is_three(int i)
{
    return i == 3;
}

template<class Rng>
constexpr bool contains_three(Rng r)
{
    auto it = ranges::find_if(r, is_three);
    return it != ranges::end(r);
}

int main()
{
    using namespace ranges;

    int ia[] = {0, 1, 2, 3, 4, 5};
    constexpr auto s = size(ia);

    {
        InputIterator<const int*> r = find_if(InputIterator<const int*>(ia),
                                              InputIterator<const int*>(ia + s),
                                              [](int i){return i == 3;});
        CHECK(*r == 3);
        r = find_if(InputIterator<const int*>(ia),
                    InputIterator<const int*>(ia+s),
                    [](int i){return i == 10;});
        CHECK(r == InputIterator<const int*>(ia+s));

        r = find_if(InputIterator<const int*>(ia),
                    Sentinel<const int*>(ia+s),
                    [](int i){return i == 3;});
        CHECK(*r == 3);
        r = find_if(InputIterator<const int*>(ia),
                    Sentinel<const int*>(ia+s),
                    [](int i){return i == 10;});
        CHECK(r == InputIterator<const int*>(ia+s));
    }

    {
        int *pi = find_if(ia, [](int i){return i == 3;});
        CHECK(*pi == 3);
        pi = find_if(ia, [](int i){return i == 10;});
        CHECK(pi == ia+s);
    }

#ifndef RANGES_WORKAROUND_MSVC_573728
    {
        auto pj0 = find_if(std::move(ia), [](int i){return i == 3;});
        CHECK(::is_dangling(pj0));
        auto pj1 = find_if(std::move(ia), [](int i){return i == 10;});
        CHECK(::is_dangling(pj1));
    }
#endif // RANGES_WORKAROUND_MSVC_573728

    {
        std::vector<int> const vec(begin(ia), end(ia));
        auto pj0 = find_if(std::move(vec), [](int i){return i == 3;});
        CHECK(::is_dangling(pj0));
        auto pj1 = find_if(std::move(vec), [](int i){return i == 10;});
        CHECK(::is_dangling(pj1));
    }

    {
        auto* ignore = find_if(ranges::views::all(ia), [](int i){return i == 10;});
        (void)ignore;
    }

    {
        S sa[] = {{0}, {1}, {2}, {3}, {4}, {5}};
        S *ps = find_if(sa, [](int i){return i == 3;}, &S::i_);
        CHECK(ps->i_ == 3);
        ps = find_if(sa, [](int i){return i == 10;}, &S::i_);
        CHECK(ps == end(sa));
    }

    {
        using IL = std::initializer_list<int>;
        STATIC_CHECK(contains_three(IL{0, 1, 2, 3}));
        STATIC_CHECK(!contains_three(IL{0, 1, 2}));
    }

    return ::test_result();
}