RosettaCodeData/Task/List-comprehensions/Rust/list-comprehensions-5.rust

8 lines
105 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(0..10).filter_map(move |x| {
if x != 5 && true {
Some(x)
} else {
None
}
})