2019-09-25 06:50:23 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
#![warn(clippy::all, clippy::pedantic)]
|
2020-11-08 17:32:12 -06:00
|
|
|
#![allow(clippy::let_underscore_drop)]
|
2019-09-25 06:50:23 -05:00
|
|
|
#![allow(clippy::missing_docs_in_private_items)]
|
2020-06-07 23:35:10 -05:00
|
|
|
#![allow(clippy::map_identity)]
|
2020-11-17 10:01:22 -06:00
|
|
|
#![allow(clippy::unnecessary_wraps)]
|
2019-09-25 06:50:23 -05:00
|
|
|
|
|
|
|
fn main() {
|
2020-07-30 14:20:31 -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().filter_map(option_id).collect();
|
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().filter_map(option_id_ref).collect();
|
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().filter_map(option_id_closure).collect();
|
2020-07-25 12:04:59 -05:00
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().filter_map(|x| x.checked_add(1)).collect();
|
2020-07-30 14:20:31 -05:00
|
|
|
|
|
|
|
// mapping to Iterator on Iterator
|
2019-09-25 06:50:23 -05:00
|
|
|
let _: Vec<_> = vec![5_i8; 6].into_iter().flat_map(|x| 0..x).collect();
|
2020-07-30 14:20:31 -05:00
|
|
|
|
|
|
|
// mapping to Option on Option
|
2020-04-15 12:06:41 -05:00
|
|
|
let _: Option<_> = (Some(Some(1))).and_then(|x| x);
|
2019-09-25 06:50:23 -05:00
|
|
|
}
|