Bump Rust

This commit is contained in:
jeehoon.kang
2023-05-19 11:08:39 +00:00
parent 91b7639f72
commit 214ca0e629
4 changed files with 14 additions and 16 deletions

View File

@@ -6,7 +6,6 @@ const SIZE: usize = 100_000_000;
fn sequential() {
let _v = (0..SIZE)
.into_iter()
.filter_map(|x| if x % 2 == 0 { Some(x * 3) } else { None })
.collect::<Vec<_>>();
}