rust-clippy/tests/ui/map_flatten.stderr

41 lines
2 KiB
Text
Raw Normal View History

2020-07-30 19:20:31 +00:00
error: called `map(..).flatten()` on an `Iterator`
2020-11-08 23:32:12 +00:00
--> $DIR/map_flatten.rs:15:46
2018-10-06 16:18:06 +00:00
|
2020-07-30 19:20:31 +00:00
LL | let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id).flatten().collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `filter_map` instead: `.filter_map(option_id)`
2018-10-06 16:18:06 +00:00
|
= note: `-D clippy::map-flatten` implied by `-D warnings`
2020-07-30 19:20:31 +00:00
error: called `map(..).flatten()` on an `Iterator`
2020-11-08 23:32:12 +00:00
--> $DIR/map_flatten.rs:16:46
2020-07-30 19:20:31 +00:00
|
LL | let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id_ref).flatten().collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `filter_map` instead: `.filter_map(option_id_ref)`
error: called `map(..).flatten()` on an `Iterator`
2020-11-08 23:32:12 +00:00
--> $DIR/map_flatten.rs:17:46
2020-07-30 19:20:31 +00:00
|
LL | let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id_closure).flatten().collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `filter_map` instead: `.filter_map(option_id_closure)`
error: called `map(..).flatten()` on an `Iterator`
2020-11-08 23:32:12 +00:00
--> $DIR/map_flatten.rs:18:46
2020-07-30 19:20:31 +00:00
|
LL | let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| x.checked_add(1)).flatten().collect();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `filter_map` instead: `.filter_map(|x| x.checked_add(1))`
error: called `map(..).flatten()` on an `Iterator`
2020-11-08 23:32:12 +00:00
--> $DIR/map_flatten.rs:21:46
|
LL | let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
2020-07-30 19:20:31 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `flat_map` instead: `.flat_map(|x| 0..x)`
2020-07-30 19:20:31 +00:00
error: called `map(..).flatten()` on an `Option`
2020-11-08 23:32:12 +00:00
--> $DIR/map_flatten.rs:24:39
2020-04-15 17:06:41 +00:00
|
LL | let _: Option<_> = (Some(Some(1))).map(|x| x).flatten();
2020-07-30 19:20:31 +00:00
| ^^^^^^^^^^^^^^^^^^^^^ help: try using `and_then` instead: `.and_then(|x| x)`
2020-04-15 17:06:41 +00:00
2020-11-08 23:32:12 +00:00
error: aborting due to 6 previous errors