mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
11 lines
465 B
Text
11 lines
465 B
Text
error: called `is_some()` after searching an `Iterator` with `find`
|
|
--> $DIR/ice-9041.rs:5:19
|
|
|
|
|
LL | things.iter().find(|p| is_thing_ready(p)).is_some()
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `any()` instead: `any(|p| is_thing_ready(&p))`
|
|
|
|
|
= note: `-D clippy::search-is-some` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::search_is_some)]`
|
|
|
|
error: aborting due to previous error
|
|
|