2020-11-23 06:51:04 -06:00
|
|
|
error: called `is_some()` after searching an `Iterator` with `find`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:15:13
|
2020-11-23 06:51:04 -06: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 11:04:22 -05:00
|
|
|
= note: `-D clippy::search-is-some` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::search_is_some)]`
|
2020-11-23 06:51:04 -06:00
|
|
|
|
|
|
|
error: called `is_some()` after searching an `Iterator` with `position`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:21:13
|
2020-11-23 06:51:04 -06: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`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:27:13
|
2020-11-23 06:51:04 -06: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 05:33:31 -06:00
|
|
|
error: called `is_some()` after searching an `Iterator` with `find`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:42:20
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
|
LL | let _ = (0..1).find(some_closure).is_some();
|
2024-01-25 12:17:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `any(some_closure)`
|
2021-12-06 05:33:31 -06:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
error: called `is_none()` after searching an `Iterator` with `find`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:52:13
|
2021-03-25 13:29:11 -05: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`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:58:13
|
2021-03-25 13:29:11 -05: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`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:64:13
|
2021-03-25 13:29:11 -05: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 05:33:31 -06:00
|
|
|
error: called `is_none()` after searching an `Iterator` with `find`
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/search_is_some.rs:79:13
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
|
LL | let _ = (0..1).find(some_closure).is_none();
|
2024-01-25 12:17:36 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `!(0..1).any(some_closure)`
|
2021-12-06 05:33:31 -06:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2020-11-23 06:51:04 -06:00
|
|
|
|