2020-10-17 21:28:00 +00:00
|
|
|
// aux-build:option_helpers.rs
|
2021-03-20 13:30:45 +00:00
|
|
|
#![warn(clippy::search_is_some)]
|
|
|
|
#![allow(dead_code)]
|
2020-10-17 21:07:22 +00:00
|
|
|
extern crate option_helpers;
|
|
|
|
use option_helpers::IteratorFalsePositives;
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn main() {
|
|
|
|
let v = vec![3, 2, 1, 0, -1, -2, -3];
|
|
|
|
let y = &&42;
|
|
|
|
|
|
|
|
|
|
|
|
// Check `find().is_some()`, multi-line case.
|
|
|
|
let _ = v.iter().find(|&x| {
|
|
|
|
*x < 0
|
|
|
|
}
|
|
|
|
).is_some();
|
|
|
|
|
|
|
|
// Check `position().is_some()`, multi-line case.
|
|
|
|
let _ = v.iter().position(|&x| {
|
|
|
|
x < 0
|
|
|
|
}
|
|
|
|
).is_some();
|
|
|
|
|
|
|
|
// Check `rposition().is_some()`, multi-line case.
|
|
|
|
let _ = v.iter().rposition(|&x| {
|
|
|
|
x < 0
|
|
|
|
}
|
|
|
|
).is_some();
|
|
|
|
|
|
|
|
// Check that we don't lint if the caller is not an `Iterator` or string
|
2020-11-11 06:48:01 +00:00
|
|
|
let falsepos = IteratorFalsePositives { foo: 0 };
|
|
|
|
let _ = falsepos.find().is_some();
|
|
|
|
let _ = falsepos.position().is_some();
|
|
|
|
let _ = falsepos.rposition().is_some();
|
2020-10-17 21:07:22 +00:00
|
|
|
// check that we don't lint if `find()` is called with
|
|
|
|
// `Pattern` that is not a string
|
|
|
|
let _ = "hello world".find(|c: char| c == 'o' || c == 'l').is_some();
|
|
|
|
}
|
2021-03-20 13:30:45 +00:00
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
fn is_none() {
|
|
|
|
let v = vec![3, 2, 1, 0, -1, -2, -3];
|
|
|
|
let y = &&42;
|
|
|
|
|
|
|
|
|
|
|
|
// Check `find().is_none()`, multi-line case.
|
|
|
|
let _ = v.iter().find(|&x| {
|
|
|
|
*x < 0
|
|
|
|
}
|
|
|
|
).is_none();
|
|
|
|
|
|
|
|
// Check `position().is_none()`, multi-line case.
|
|
|
|
let _ = v.iter().position(|&x| {
|
|
|
|
x < 0
|
|
|
|
}
|
|
|
|
).is_none();
|
|
|
|
|
|
|
|
// Check `rposition().is_none()`, multi-line case.
|
|
|
|
let _ = v.iter().rposition(|&x| {
|
|
|
|
x < 0
|
|
|
|
}
|
|
|
|
).is_none();
|
|
|
|
|
|
|
|
// Check that we don't lint if the caller is not an `Iterator` or string
|
|
|
|
let falsepos = IteratorFalsePositives { foo: 0 };
|
|
|
|
let _ = falsepos.find().is_none();
|
|
|
|
let _ = falsepos.position().is_none();
|
|
|
|
let _ = falsepos.rposition().is_none();
|
|
|
|
// check that we don't lint if `find()` is called with
|
|
|
|
// `Pattern` that is not a string
|
|
|
|
let _ = "hello world".find(|c: char| c == 'o' || c == 'l').is_none();
|
|
|
|
}
|