2019-09-25 06:50:23 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
2018-09-21 02:26:38 -05:00
|
|
|
#![warn(clippy::all, clippy::pedantic)]
|
2020-11-23 06:51:04 -06:00
|
|
|
#![allow(clippy::let_underscore_drop)]
|
2018-09-21 02:26:38 -05:00
|
|
|
#![allow(clippy::missing_docs_in_private_items)]
|
2020-07-14 07:59:59 -05:00
|
|
|
#![allow(clippy::map_identity)]
|
2021-09-28 12:03:12 -05:00
|
|
|
#![allow(clippy::redundant_closure)]
|
2020-11-23 06:51:04 -06:00
|
|
|
#![allow(clippy::unnecessary_wraps)]
|
2021-08-12 04:16:25 -05:00
|
|
|
#![feature(result_flattening)]
|
2018-09-21 02:26:38 -05:00
|
|
|
|
|
|
|
fn main() {
|
2020-08-11 08:43:21 -05: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();
|
|
|
|
|
|
|
|
// mapping to Iterator on Iterator
|
2018-09-21 02:26:38 -05:00
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().map(|x| 0..x).flatten().collect();
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
|
|
// mapping to Option on Option
|
2020-04-15 12:06:41 -05:00
|
|
|
let _: Option<_> = (Some(Some(1))).map(|x| x).flatten();
|
2021-08-12 04:16:25 -05:00
|
|
|
|
|
|
|
// mapping to Result on Result
|
|
|
|
let _: Result<_, &str> = (Ok(Ok(1))).map(|x| x).flatten();
|
2018-09-21 02:26:38 -05:00
|
|
|
}
|