rust/tests/ui/map_flatten.rs

25 lines
918 B
Rust
Raw Normal View History

2019-09-25 13:50:23 +02:00
// run-rustfix
#![warn(clippy::all, clippy::pedantic)]
#![allow(clippy::missing_docs_in_private_items)]
2020-06-08 06:35:10 +02:00
#![allow(clippy::map_identity)]
fn main() {
2020-07-30 21:20:31 +02:00
// mapping to Option on Iterator
fn option_id(x: i8) -> Option<i8> {
Some(x)
}
let option_id_ref: fn(i8) -> Option<i8> = option_id;
let option_id_closure = |x| Some(x);
let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id).flatten().collect();
let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id_ref).flatten().collect();
let _: Vec<_> = vec![5_i8; 6].into_iter().map(option_id_closure).flatten().collect();
let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| x.checked_add(1)).flatten().collect();
2020-07-30 21:20:31 +02:00
// mapping to Iterator on Iterator
let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
2020-07-30 21:20:31 +02:00
// mapping to Option on Option
2020-04-15 19:06:41 +02:00
let _: Option<_> = (Some(Some(1))).map(|x| x).flatten();
}