mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 13:05:18 +03:00
56194654c6
changelog: [`filter_next`]: suggest replacing `filter().next_back()` with `rfind()` for `DoubleEndedIterator` Signed-off-by: Zihan <zihanli0822@gmail.com>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
error: methods called `new` usually return `Self`
|
|
--> tests/ui/methods.rs:102:5
|
|
|
|
|
LL | / fn new() -> i32 {
|
|
LL | |
|
|
LL | | 0
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::new-ret-no-self` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::new_ret_no_self)]`
|
|
|
|
error: called `filter(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find(..)` instead
|
|
--> tests/ui/methods.rs:124:13
|
|
|
|
|
LL | let _ = v.iter().filter(|&x| {
|
|
| _____________^
|
|
LL | |
|
|
LL | | *x < 0
|
|
LL | | }
|
|
LL | | ).next();
|
|
| |___________________________^
|
|
|
|
|
= note: `-D clippy::filter-next` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::filter_next)]`
|
|
|
|
error: called `filter(..).next_back()` on an `DoubleEndedIterator`. This is more succinctly expressed by calling `.rfind(..)` instead
|
|
--> tests/ui/methods.rs:143:13
|
|
|
|
|
LL | let _ = v.iter().filter(|&x| {
|
|
| _____________^
|
|
LL | |
|
|
LL | | *x < 0
|
|
LL | | }
|
|
LL | | ).next_back();
|
|
| |________________________________^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|