2018-09-21 07:26:38 +00:00
|
|
|
error: called `map(..).flatten()` on an `Iterator`. This is more succinctly expressed by calling `.flat_map(..)`
|
2019-09-25 11:50:23 +00:00
|
|
|
--> $DIR/map_flatten.rs:7:21
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
|
2020-01-06 06:36:33 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `flat_map` instead: `vec![5_i8; 6].into_iter().flat_map(|x| 0..x)`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::map-flatten` implied by `-D warnings`
|
2018-09-21 07:26:38 +00:00
|
|
|
|
2020-04-15 17:06:41 +00:00
|
|
|
error: called `map(..).flatten()` on an `Option`. This is more succinctly expressed by calling `.and_then(..)`
|
|
|
|
--> $DIR/map_flatten.rs:8:24
|
|
|
|
|
|
|
|
|
LL | let _: Option<_> = (Some(Some(1))).map(|x| x).flatten();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `and_then` instead: `(Some(Some(1))).and_then(|x| x)`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-09-21 07:26:38 +00:00
|
|
|
|