summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/search_is_some.stderr
blob: 7eff614d17c6915aefcbfae964b165f8f9870bd4 (plain)
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
error: called `is_some()` after searching an `Iterator` with `find`
  --> $DIR/search_is_some.rs:15:13
   |
LL |       let _ = v.iter().find(|&x| {
   |  _____________^
LL | |                               *x < 0
LL | |                           }
LL | |                    ).is_some();
   | |______________________________^
   |
   = help: this is more succinctly expressed by calling `any()`
   = note: `-D clippy::search-is-some` implied by `-D warnings`

error: called `is_some()` after searching an `Iterator` with `position`
  --> $DIR/search_is_some.rs:21:13
   |
LL |       let _ = v.iter().position(|&x| {
   |  _____________^
LL | |                                   x < 0
LL | |                               }
LL | |                    ).is_some();
   | |______________________________^
   |
   = help: this is more succinctly expressed by calling `any()`

error: called `is_some()` after searching an `Iterator` with `rposition`
  --> $DIR/search_is_some.rs:27:13
   |
LL |       let _ = v.iter().rposition(|&x| {
   |  _____________^
LL | |                                    x < 0
LL | |                                }
LL | |                    ).is_some();
   | |______________________________^
   |
   = help: this is more succinctly expressed by calling `any()`

error: called `is_some()` after searching an `Iterator` with `find`
  --> $DIR/search_is_some.rs:42:20
   |
LL |     let _ = (0..1).find(some_closure).is_some();
   |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(some_closure)`

error: called `is_none()` after searching an `Iterator` with `find`
  --> $DIR/search_is_some.rs:52:13
   |
LL |       let _ = v.iter().find(|&x| {
   |  _____________^
LL | |                               *x < 0
LL | |                           }
LL | |                    ).is_none();
   | |______________________________^
   |
   = help: this is more succinctly expressed by calling `any()` with negation

error: called `is_none()` after searching an `Iterator` with `position`
  --> $DIR/search_is_some.rs:58:13
   |
LL |       let _ = v.iter().position(|&x| {
   |  _____________^
LL | |                                   x < 0
LL | |                               }
LL | |                    ).is_none();
   | |______________________________^
   |
   = help: this is more succinctly expressed by calling `any()` with negation

error: called `is_none()` after searching an `Iterator` with `rposition`
  --> $DIR/search_is_some.rs:64:13
   |
LL |       let _ = v.iter().rposition(|&x| {
   |  _____________^
LL | |                                    x < 0
LL | |                                }
LL | |                    ).is_none();
   | |______________________________^
   |
   = help: this is more succinctly expressed by calling `any()` with negation

error: called `is_none()` after searching an `Iterator` with `find`
  --> $DIR/search_is_some.rs:79:13
   |
LL |     let _ = (0..1).find(some_closure).is_none();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `!_.any()` instead: `!(0..1).any(some_closure)`

error: aborting due to 8 previous errors