2020-11-23 12:51:04 +00:00
|
|
|
error: called `is_some()` after searching an `Iterator` with `find`
|
2021-03-25 18:29:11 +00:00
|
|
|
--> $DIR/search_is_some.rs:14:13
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
|
LL | let _ = v.iter().find(|&x| {
|
|
|
|
| _____________^
|
|
|
|
LL | | *x < 0
|
|
|
|
LL | | }
|
|
|
|
LL | | ).is_some();
|
|
|
|
| |______________________________^
|
|
|
|
|
|
|
|
|
= help: this is more succinctly expressed by calling `any()`
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::search-is-some` implied by `-D warnings`
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
error: called `is_some()` after searching an `Iterator` with `position`
|
2021-03-25 18:29:11 +00:00
|
|
|
--> $DIR/search_is_some.rs:20:13
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
|
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`
|
2021-03-25 18:29:11 +00:00
|
|
|
--> $DIR/search_is_some.rs:26:13
|
2020-11-23 12:51:04 +00:00
|
|
|
|
|
|
|
|
LL | let _ = v.iter().rposition(|&x| {
|
|
|
|
| _____________^
|
|
|
|
LL | | x < 0
|
|
|
|
LL | | }
|
|
|
|
LL | | ).is_some();
|
|
|
|
| |______________________________^
|
|
|
|
|
|
|
|
|
= help: this is more succinctly expressed by calling `any()`
|
|
|
|
|
2021-12-06 11:33:31 +00:00
|
|
|
error: called `is_some()` after searching an `Iterator` with `find`
|
|
|
|
--> $DIR/search_is_some.rs:41:20
|
|
|
|
|
|
|
|
|
LL | let _ = (0..1).find(some_closure).is_some();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(some_closure)`
|
|
|
|
|
2021-03-25 18:29:11 +00:00
|
|
|
error: called `is_none()` after searching an `Iterator` with `find`
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/search_is_some.rs:51:13
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
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`
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/search_is_some.rs:57:13
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
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`
|
2021-12-06 11:33:31 +00:00
|
|
|
--> $DIR/search_is_some.rs:63:13
|
2021-03-25 18:29:11 +00:00
|
|
|
|
|
|
|
|
LL | let _ = v.iter().rposition(|&x| {
|
|
|
|
| _____________^
|
|
|
|
LL | | x < 0
|
|
|
|
LL | | }
|
|
|
|
LL | | ).is_none();
|
|
|
|
| |______________________________^
|
|
|
|
|
|
|
|
|
= help: this is more succinctly expressed by calling `any()` with negation
|
|
|
|
|
2021-12-06 11:33:31 +00:00
|
|
|
error: called `is_none()` after searching an `Iterator` with `find`
|
|
|
|
--> $DIR/search_is_some.rs:78: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
|
2020-11-23 12:51:04 +00:00
|
|
|
|